home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / temacd / rapidphp / rapidphp7.exe / {app} / data / phpfunc.ini < prev    next >
Text File  |  2006-03-04  |  315KB  |  2,864 lines

  1. abs=mixed abs (mixed number) - Absolute value
  2. acos=float acos (float arg) - Arc cosine
  3. acosh=float acosh (float arg) - Inverse hyperbolic cosine
  4. addcslashes=string addcslashes (string str, string charlist) - Quote string with slashes in a C style
  5. addslashes=string addslashes (string str) - Quote string with slashes
  6. aggregate=void aggregate (object object, string class_name) - dynamic class and object aggregation of methods and properties
  7. aggregate_info=array aggregate_info (object object) - returns an associative array of the methods and properties from each class that has been aggregated to the object.
  8. aggregate_methods=void aggregate_methods (object object, string class_name) - dynamic class and object aggregation of methods
  9. aggregate_methods_by_list=void aggregate_methods_by_list (object object, string class_name, array methods_list [, bool exclude]) - selective dynamic class methods aggregation to an object
  10. aggregate_methods_by_regexp=void aggregate_methods_by_regexp (object object, string class_name, string regexp [, bool exclude]) - selective class methods aggregation to an object using a regular expression
  11. aggregate_properties=void aggregate_properties (object object, string class_name) - dynamic aggregation of  class properties to an object
  12. aggregate_properties_by_list=void aggregate_properties_by_list (object object, string class_name, array properties_list [, bool exclude]) - selective dynamic class properties aggregation to an object
  13. aggregate_properties_by_regexp=void aggregate_properties_by_regexp (object object, string class_name, string regexp [, bool exclude]) - selective class properties aggregation to an object using a regular expression
  14. aggregation_info=array aggregate_info (object object) - returns an associative array of the methods and properties from each class that has been aggregated to the object.
  15. apache_child_terminate=bool apache_child_terminate (void) - Terminate apache process after this request
  16. apache_lookup_uri=object apache_lookup_uri (string filename) - Perform a partial request for the specified URI and return all info about it
  17. apache_note=string apache_note (string note_name [, string note_value]) - Get and set apache request notes
  18. apache_request_headers=array apache_request_headers (void) - Fetch all HTTP request headers
  19. apache_response_headers=array apache_response_headers (void) - Fetch all HTTP response headers
  20. apache_setenv=int apache_setenv (string variable, string value [, bool walk_to_top]) - Set an Apache subprocess_env variable
  21. array=array array ([mixed ...]) - Create an array
  22. array_change_key_case=array array_change_key_case (array input [, int case]) - Returns an array with all string keys lowercased or uppercased
  23. array_chunk=array array_chunk (array input, int size [, bool preserve_keys]) - Split an array into chunks
  24. array_combine=array array_combine (array keys, array values) - Creates an array by using one array for keys and another for its values
  25. array_count_values=array array_count_values (array input) - Counts all the values of an array
  26. array_diff=array array_diff (array array1, array array2 [, array ...]) - Computes the difference of arrays
  27. array_diff_assoc=array array_diff_assoc (array array1, array array2 [, array ...]) - Computes the difference of arrays with additional index check
  28. array_fill=array array_fill (int start_index, int num, mixed value) - Fill an array with values
  29. array_filter=array array_filter (array input [, callback function]) - Filters elements of an array using a callback function
  30. array_flip=array array_flip (array trans) - Exchanges all keys with their associated values in an array
  31. array_intersect=array array_intersect (array array1, array array2 [, array ...]) - Computes the intersection of arrays
  32. array_intersect_assoc=array array_intersect_assoc (array array1, array array2 [, array ...]) - Computes the intersection of arrays with additional index check
  33. array_key_exists=bool array_key_exists (mixed key, array search) - Checks if the given key or index exists in the array
  34. array_keys=array array_keys (array input [, mixed search_value]) - Return all the keys of an array
  35. array_map=array array_map (mixed callback, array arr1 [, array ...]) - Applies the callback to the elements of the given arrays
  36. array_merge=array array_merge (array array1, array array2 [, array ...]) - Merge two or more arrays
  37. array_merge_recursive=array array_merge_recursive (array array1, array array2 [, array ...]) - Merge two or more arrays recursively
  38. array_multisort=bool array_multisort (array ar1 [, mixed arg [, mixed ... [, array ...]]]) - Sort multiple or multi-dimensional arrays
  39. array_pad=array array_pad (array input, int pad_size, mixed pad_value) - Pad array to the specified length with a value
  40. array_pop=mixed array_pop (array array) - Pop the element off the end of array
  41. array_push=int array_push (array array, mixed var [, mixed ...]) - Push one or more elements onto the end of array
  42. array_rand=mixed array_rand (array input [, int num_req]) - Pick one or more random entries out of an array
  43. array_reduce=mixed array_reduce (array input, callback function [, int initial]) - Iteratively reduce the array to a single value using a callback function
  44. array_reverse=array array_reverse (array array [, bool preserve_keys]) - Return an array with elements in reverse order
  45. array_search=mixed array_search (mixed needle, array haystack [, bool strict]) - Searches the array for a given value and returns the corresponding key if successful
  46. array_shift=mixed array_shift (array array) - Shift an element off the beginning of array
  47. array_slice=array array_slice (array array, int offset [, int length]) - Extract a slice of the array
  48. array_splice=array array_splice (array input, int offset [, int length [, array replacement]]) - Remove a portion of the array and replace it with something else
  49. array_sum=mixed array_sum (array array) - Calculate the sum of values in an array.
  50. array_unique=array array_unique (array array) - Removes duplicate values from an array
  51. array_unshift=int array_unshift (array array, mixed var [, mixed ...]) - Prepend one or more elements to the beginning of array
  52. array_values=array array_values (array input) - Return all the values of an array
  53. array_walk=bool array_walk (array array, callback function [, mixed userdata]) - Apply a user function to every member of an array
  54. arsort=void arsort (array array [, int sort_flags]) - Sort an array in reverse order and maintain index association
  55. ascii2ebcdic=int ascii2ebcdic (string ascii_str) - Translate string from ASCII to EBCDIC
  56. asin=float asin (float arg) - Arc sine
  57. asinh=float asinh (float arg) - Inverse hyperbolic sine
  58. asort=void asort (array array [, int sort_flags]) - Sort an array and maintain index association
  59. aspell_check=bool aspell_check (int dictionary_link, string word) - Check a word [deprecated]
  60. aspell_check_raw=bool aspell_check_raw (int dictionary_link, string word) - Check a word without changing its case or trying to trim it [deprecated]
  61. aspell_new=int aspell_new (string master [, string personal]) - Load a new dictionary [deprecated]
  62. aspell_suggest=array aspell_suggest (int dictionary_link, string word) - Suggest spellings of a word [deprecated]
  63. assert=int assert (mixed assertion) - Checks if assertion is
  64. assert_options=mixed assert_options (int what [, mixed value]) - Set/get the various assert flags
  65. atan=float atan (float arg) - Arc tangent
  66. atan2=float atan2 (float y, float x) - arc tangent of two variables
  67. atanh=float atanh (float arg) - Inverse hyperbolic tangent
  68. base64_decode=string base64_decode (string encoded_data) - Decodes data encoded with MIME base64
  69. base64_encode=string base64_encode (string data) - Encodes data with MIME base64
  70. base_convert=string base_convert (string number, int frombase, int tobase) - Convert a number between arbitrary bases
  71. basename=string basename (string path [, string suffix]) - Returns filename component of path
  72. bcadd=string bcadd (string left_operand, string right_operand [, int scale]) - Add two arbitrary precision numbers
  73. bccomp=int bccomp (string left_operand, string right_operand [, int scale]) - Compare two arbitrary precision numbers
  74. bcdiv=string bcdiv (string left_operand, string right_operand [, int scale]) - Divide two arbitrary precision numbers
  75. bcmod=string bcmod (string left_operand, string modulus) - Get modulus of an arbitrary precision number
  76. bcmul=string bcmul (string left_operand, string right_operand [, int scale]) - Multiply two arbitrary precision number
  77. bcpow=string bcpow (string x, int y [, int scale]) - Raise an arbitrary precision number to another
  78. bcpowmod=string bcpowmod (string x, string y, string modulus [, int scale]) - Raise an arbitrary precision number to another, reduced by a specified modulus.
  79. bcscale=string bcscale (int scale) - Set default scale parameter for all bc math functions
  80. bcsqrt=string bcsqrt (string operand [, int scale]) - Get the square root of an arbitrary precision number
  81. bcsub=string bcsub (string left_operand, string right_operand [, int scale]) - Subtract one arbitrary precision number from another
  82. bin2hex=string bin2hex (string str) - Convert binary data into hexadecimal representation
  83. bind_textdomain_codeset=string bind_textdomain_codeset (string domain, string codeset) - Specify the character encoding in which the messages from the DOMAIN message catalog will be returned
  84. bindec=int bindec (string binary_string) - Binary to decimal
  85. bindtextdomain=string bindtextdomain (string domain, string directory) - Sets the path for a domain
  86. bzclose=int bzclose (resource bz) - Close a bzip2 file pointer
  87. bzcompress=string bzcompress (string source [, int blocksize [, int workfactor]]) - Compress a string into bzip2 encoded data
  88. bzdecompress=string bzdecompress (string source [, int small]) - Decompresses bzip2 encoded data
  89. bzerrno=int bzerrno (resource bz) - Returns a bzip2 error number
  90. bzerror=array bzerror (resource bz) - Returns the bzip2 error number and error string in an array
  91. bzerrstr=string bzerrstr (resource bz) - Returns a bzip2 error string
  92. bzflush=int bzflush (resource bz) - Force a write of all buffered data
  93. bzopen=resource bzopen (string filename, string mode) - Open a bzip2 compressed file
  94. bzread=string bzread (resource bz [, int length]) - Binary safe bzip2 file read
  95. bzwrite=int bzwrite (resource bz, string data [, int length]) - Binary safe bzip2 file write
  96. cal_days_in_month=int cal_days_in_month (int calendar, int month, int year) - Return the number of days in a month for a given year and calendar
  97. cal_from_jd=array cal_from_jd (int jd, int calendar) - Converts from Julian Day Count to a supported calendar
  98. cal_info=array cal_info ([int calendar]) - Returns information about a particular calendar
  99. cal_to_jd=int cal_to_jd (int calendar, int month, int day, int year) - Converts from a supported calendar to Julian Day Count
  100. call_user_func=mixed call_user_func (callback function [, mixed parameter [, mixed ...]]) - Call a user function given by the first parameter
  101. call_user_func_array=mixed call_user_func_array (callback function [, array paramarr]) - Call a user function given with an array of parameters
  102. call_user_method=mixed call_user_method (string method_name, object obj [, mixed parameter [, mixed ...]]) - Call a user method on an specific object [deprecated]
  103. call_user_method_array=mixed call_user_method_array (string method_name, object obj [, array paramarr]) - Call a user method given with an array of parameters [deprecated]
  104. ccvs_add=string ccvs_add (string session, string invoice, string argtype, string argval) - Add data to a transaction
  105. ccvs_auth=string ccvs_auth (string session, string invoice) - Perform credit authorization test on a transaction
  106. ccvs_command=string ccvs_command (string session, string type, string argval) - Performs a command which is peculiar to a single protocol, and thus is not available in the general CCVS API
  107. ccvs_count=int ccvs_count (string session, string type) - Find out how many transactions of a given type are stored in the system
  108. ccvs_delete=string ccvs_delete (string session, string invoice) - Delete a transaction
  109. ccvs_done=string ccvs_done (string sess) - Terminate CCVS engine and do cleanup work
  110. ccvs_init=string ccvs_init (string name) - Initialize CCVS for use
  111. ccvs_lookup=string ccvs_lookup (string session, string invoice, int inum) - Look up an item of a particular type in the database #
  112. ccvs_new=string ccvs_new (string session, string invoice) - Create a new, blank transaction
  113. ccvs_report=string ccvs_report (string session, string type) - Return the status of the background communication process
  114. ccvs_return=string ccvs_return (string session, string invoice) - Transfer funds from the merchant to the credit card holder
  115. ccvs_reverse=string ccvs_reverse (string session, string invoice) - Perform a full reversal on an already-processed authorization
  116. ccvs_sale=string ccvs_sale (string session, string invoice) - Transfer funds from the credit card holder to the merchant
  117. ccvs_status=string ccvs_status (string session, string invoice) - Check the status of an invoice
  118. ccvs_textvalue=string ccvs_textvalue (string session) - Get text return value for previous function call
  119. ccvs_void=string ccvs_void (string session, string invoice) - Perform a full reversal on a completed transaction
  120. ceil=float ceil (float value) - Round fractions up
  121. chdir=bool chdir (string directory) - Change directory
  122. checkdate=bool checkdate (int month, int day, int year) - Validate a gregorian date
  123. checkdnsrr=int checkdnsrr (string host [, string type]) - Check DNS records corresponding to a given Internet host name or IP address
  124. chgrp=bool chgrp (string filename, mixed group) - Changes file group
  125. chmod=bool chmod (string filename, int mode) - Changes file mode
  126. chop=string rtrim (string str [, string charlist]) - Strip whitespace from the end of a string
  127. chown=bool chown (string filename, mixed user) - Changes file owner
  128. chr=string chr (int ascii) - Return a specific character
  129. chroot=bool chroot (string directory) - Change the root directory
  130. chunk_split=string chunk_split (string body [, int chunklen [, string end]]) - Split a string into smaller chunks
  131. class_exists=bool class_exists (string class_name) - Checks if the class has been defined
  132. clearstatcache=void clearstatcache (void) - Clears file status cache
  133. closedir=void closedir (resource dir_handle) - close directory handle
  134. closelog=int closelog (void) - Close connection to system logger
  135. com_addref=void com_addref (void) - Increases the components reference counter.
  136. com_get=mixed com_get (resource com_object, string property) - Gets the value of a COM Component's property
  137. com_invoke=mixed com_invoke (resource com_object, string function_name [, mixed function parameters, ...]) - Calls a COM component's method.
  138. com_isenum=void com_isenum (object com_module) - Grabs an IEnumVariant
  139. com_load=string com_load (string module_name [, string server_name [, int codepage]]) - Creates a new reference to a COM component
  140. com_load_typelib=void com_load_typelib (string typelib_name [, int case_insensitive]) - Loads a Typelib
  141. com_propget=mixed com_propget (resource com_object, string property) - Gets the value of a COM Component's property
  142. com_propput=void com_propput (resource com_object, string property, mixed value) - Assigns a value to a COM component's property
  143. com_propset=void com_set (resource com_object, string property, mixed value) - Assigns a value to a COM component's property
  144. com_release=void com_release (void) - Decreases the components reference counter.
  145. com_set=void com_set (resource com_object, string property, mixed value) - Assigns a value to a COM component's property
  146. compact=array compact (mixed varname [, mixed ...]) - Create array containing variables and their values
  147. connection_aborted=int connection_aborted (void) - Returns TRUE if client disconnected
  148. connection_status=int connection_status (void) - Returns connection status bitfield
  149. connection_timeout=bool connection_timeout (void) - Return TRUE if script timed out
  150. constant=mixed constant (string name) - Returns the value of a constant
  151. convert_cyr_string=string convert_cyr_string (string str, string from, string to) - Convert from one Cyrillic character set to another
  152. copy=bool copy (string source, string dest) - Copies file
  153. cos=float cos (float arg) - Cosine
  154. cosh=float cosh (float arg) - Hyperbolic cosine
  155. count=int count (mixed var [, int mode]) - Count elements in a variable
  156. count_chars=mixed count_chars (string string [, int mode]) - Return information about characters used in a string
  157. cpdf_add_annotation=bool cpdf_add_annotation (int pdf_document, float llx, float lly, float urx, float ury, string title, string content [, int mode]) - Adds annotation
  158. cpdf_add_outline=int cpdf_add_outline (int pdf_document, int lastoutline, int sublevel, int open, int pagenr, string text) - Adds bookmark for current page
  159. cpdf_arc=bool cpdf_arc (int pdf_document, float x-coor, float y-coor, float radius, float start, float end [, int mode]) - Draws an arc
  160. cpdf_begin_text=bool cpdf_begin_text (int pdf_document) - Starts text section
  161. cpdf_circle=bool cpdf_circle (int pdf_document, float x-coor, float y-coor, float radius [, int mode]) - Draw a circle
  162. cpdf_clip=bool cpdf_clip (int pdf_document) - Clips to current path
  163. cpdf_close=bool cpdf_close (int pdf_document) - Closes the pdf document
  164. cpdf_closepath=bool cpdf_closepath (int pdf_document) - Close path
  165. cpdf_closepath_fill_stroke=bool cpdf_closepath_fill_stroke (int pdf_document) - Close, fill and stroke current path
  166. cpdf_closepath_stroke=bool cpdf_closepath_stroke (int pdf_document) - Close path and draw line along path
  167. cpdf_continue_text=bool cpdf_continue_text (int pdf_document, string text) - Output text in next line
  168. cpdf_curveto=bool cpdf_curveto (int pdf_document, float x1, float y1, float x2, float y2, float x3, float y3 [, int mode]) - Draws a curve
  169. cpdf_end_text=bool cpdf_end_text (int pdf_document) - Ends text section
  170. cpdf_fill=bool cpdf_fill (int pdf_document) - Fill current path
  171. cpdf_fill_stroke=bool cpdf_fill_stroke (int pdf_document) - Fill and stroke current path
  172. cpdf_finalize=bool cpdf_finalize (int pdf_document) - Ends document
  173. cpdf_finalize_page=bool cpdf_finalize_page (int pdf_document, int page_number) - Ends page
  174. cpdf_global_set_document_limits=bool cpdf_global_set_document_limits (int maxpages, int maxfonts, int maximages, int maxannotations, int maxobjects) - Sets document limits for any pdf document
  175. cpdf_import_jpeg=int cpdf_import_jpeg (int pdf_document, string file_name, float x-coor, float y-coor, float angle, float width, float height, float x-scale, float y-scale [, int mode]) - Opens a JPEG image
  176. cpdf_lineto=bool cpdf_lineto (int pdf_document, float x-coor, float y-coor [, int mode]) - Draws a line
  177. cpdf_moveto=bool cpdf_moveto (int pdf_document, float x-coor, float y-coor [, int mode]) - Sets current point
  178. cpdf_newpath=bool cpdf_newpath (int pdf_document) - Starts a new path
  179. cpdf_open=int cpdf_open (int compression [, string filename]) - Opens a new pdf document
  180. cpdf_output_buffer=bool cpdf_output_buffer (int pdf_document) - Outputs the pdf document in memory buffer
  181. cpdf_page_init=bool cpdf_page_init (int pdf_document, int page_number, int orientation, float height, float width [, float unit]) - Starts new page
  182. cpdf_place_inline_image=bool cpdf_place_inline_image (int pdf_document, int image, float x-coor, float y-coor, float angle, float width, float height [, int mode]) - Places an image on the page
  183. cpdf_rect=bool cpdf_rect (int pdf_document, float x-coor, float y-coor, float width, float height [, int mode]) - Draw a rectangle
  184. cpdf_restore=bool cpdf_restore (int pdf_document) - Restores formerly saved environment
  185. cpdf_rlineto=bool cpdf_rlineto (int pdf_document, float x-coor, float y-coor [, int mode]) - Draws a line
  186. cpdf_rmoveto=bool cpdf_rmoveto (int pdf_document, float x-coor, float y-coor [, int mode]) - Sets current point
  187. cpdf_rotate=bool cpdf_rotate (int pdf_document, float angle) - Sets rotation
  188. cpdf_rotate_text=bool cpdf_rotate_text (int pdfdoc, float angle) - Sets text rotation angle
  189. cpdf_save=bool cpdf_save (int pdf_document) - Saves current environment
  190. cpdf_save_to_file=bool cpdf_save_to_file (int pdf_document, string filename) - Writes the pdf document into a file
  191. cpdf_scale=bool cpdf_scale (int pdf_document, float x-scale, float y-scale) - Sets scaling
  192. cpdf_set_action_url=bool cpdf_set_action_url (int pdfdoc, float xll, float yll, float xur, float xur, string url [, int mode]) - Sets hyperlink
  193. cpdf_set_char_spacing=bool cpdf_set_char_spacing (int pdf_document, float space) - Sets character spacing
  194. cpdf_set_creator=bool cpdf_set_creator (string creator) - Sets the creator field in the pdf document
  195. cpdf_set_current_page=bool cpdf_set_current_page (int pdf_document, int page_number) - Sets current page
  196. cpdf_set_font=bool cpdf_set_font (int pdf_document, string font_name, float size, string encoding) - Select the current font face and size
  197. cpdf_set_font_directories=bool cpdf_set_font_directories (int pdfdoc, string pfmdir, string pfbdir) - Sets directories to search when using external fonts
  198. cpdf_set_font_map_file=bool cpdf_set_font_map_file (int pdfdoc, string filename) - Sets fontname to filename translation map when using external fonts
  199. cpdf_set_horiz_scaling=bool cpdf_set_horiz_scaling (int pdf_document, float scale) - Sets horizontal scaling of text
  200. cpdf_set_keywords=bool cpdf_set_keywords (string keywords) - Sets the keywords field of the pdf document
  201. cpdf_set_leading=bool cpdf_set_leading (int pdf_document, float distance) - Sets distance between text lines
  202. cpdf_set_page_animation=bool cpdf_set_page_animation (int pdf_document, int transition, float duration) - Sets duration between pages
  203. cpdf_set_subject=bool cpdf_set_subject (int pdf_document, string subject) - Sets the subject field of the pdf document
  204. cpdf_set_text_matrix=bool cpdf_set_text_matrix (int pdf_document, array matrix) - Sets the text matrix
  205. cpdf_set_text_pos=bool cpdf_set_text_pos (int pdf_document, float x-coor, float y-coor [, int mode]) - Sets text position
  206. cpdf_set_text_rendering=bool cpdf_set_text_rendering (int pdf_document, int rendermode) - Determines how text is rendered
  207. cpdf_set_text_rise=bool cpdf_set_text_rise (int pdf_document, float value) - Sets the text rise
  208. cpdf_set_title=bool cpdf_set_title (string title) - Sets the title field of the pdf document
  209. cpdf_set_viewer_preferences=bool cpdf_set_viewer_preferences (int pdfdoc, array preferences) - How to show the document in the viewer
  210. cpdf_set_word_spacing=bool cpdf_set_word_spacing (int pdf_document, float space) - Sets spacing between words
  211. cpdf_setdash=bool cpdf_setdash (int pdf_document, float white, float black) - Sets dash pattern
  212. cpdf_setflat=bool cpdf_setflat (int pdf_document, float value) - Sets flatness
  213. cpdf_setgray=bool cpdf_setgray (int pdf_document, float gray_value) - Sets drawing and filling color to gray value
  214. cpdf_setgray_fill=bool cpdf_setgray_fill (int pdf_document, float value) - Sets filling color to gray value
  215. cpdf_setgray_stroke=bool cpdf_setgray_stroke (int pdf_document, float gray_value) - Sets drawing color to gray value
  216. cpdf_setlinecap=bool cpdf_setlinecap (int pdf_document, int value) - Sets linecap parameter
  217. cpdf_setlinejoin=bool cpdf_setlinejoin (int pdf_document, int value) - Sets linejoin parameter
  218. cpdf_setlinewidth=bool cpdf_setlinewidth (int pdf_document, float width) - Sets line width
  219. cpdf_setmiterlimit=bool cpdf_setmiterlimit (int pdf_document, float value) - Sets miter limit
  220. cpdf_setrgbcolor=bool cpdf_setrgbcolor (int pdf_document, float red_value, float green_value, float blue_value) - Sets drawing and filling color to rgb color value
  221. cpdf_setrgbcolor_fill=bool cpdf_setrgbcolor_fill (int pdf_document, float red_value, float green_value, float blue_value) - Sets filling color to rgb color value
  222. cpdf_setrgbcolor_stroke=bool cpdf_setrgbcolor_stroke (int pdf_document, float red_value, float green_value, float blue_value) - Sets drawing color to rgb color value
  223. cpdf_show=bool cpdf_show (int pdf_document, string text) - Output text at current position
  224. cpdf_show_xy=bool cpdf_show_xy (int pdf_document, string text, float x-coor, float y-coor [, int mode]) - Output text at position
  225. cpdf_stringwidth=float cpdf_stringwidth (int pdf_document, string text) - Returns width of text in current font
  226. cpdf_stroke=bool cpdf_stroke (int pdf_document) - Draw line along path
  227. cpdf_text=bool cpdf_text (int pdf_document, string text, float x-coor, float y-coor [, int mode [, float orientation [, int alignmode]]]) - Output text with parameters
  228. cpdf_translate=bool cpdf_translate (int pdf_document, float x-coor, float y-coor [, int mode]) - Sets origin of coordinate system
  229. crack_check=bool crack_check ([resource dictionary, string password]) - Performs an obscure check with the given password
  230. crack_closedict=bool crack_closedict ([resource dictionary]) - Closes an open CrackLib dictionary
  231. crack_getlastmessage=string crack_getlastmessage (void) - Returns the message from the last obscure check
  232. crack_opendict=resource crack_opendict (string dictionary) - Opens a new CrackLib dictionary
  233. crc32=int crc32 (string str) - Calculates the crc32 polynomial of a string
  234. create_function=string create_function (string args, string code) - Create an anonymous (lambda-style) function
  235. crypt=string crypt (string str [, string salt]) - One-way string encryption (hashing)
  236. ctype_alnum=bool ctype_alnum (string text) - Check for alphanumeric character(s)
  237. ctype_alpha=bool ctype_alpha (string text) - Check for alphabetic character(s)
  238. ctype_cntrl=bool ctype_cntrl (string text) - Check for control character(s)
  239. ctype_digit=bool ctype_digit (string text) - Check for numeric character(s)
  240. ctype_graph=bool ctype_graph (string text) - Check for any printable character(s) except space
  241. ctype_lower=bool ctype_lower (string text) - Check for lowercase character(s)
  242. ctype_print=bool ctype_print (string text) - Check for printable character(s)
  243. ctype_punct=bool ctype_punct (string text) - Check for any printable character which is not whitespace or an alphanumeric character
  244. ctype_space=bool ctype_space (string text) - Check for whitespace character(s)
  245. ctype_upper=bool ctype_upper (string text) - Check for uppercase character(s)
  246. ctype_xdigit=bool ctype_xdigit (string text) - Check for character(s) representing a hexadecimal digit
  247. curl_close=void curl_close (resource ch) - Close a CURL session
  248. curl_errno=int curl_errno (resource ch) - Return the last error number
  249. curl_error=string curl_error (resource ch) - Return a string containing the last error for the current session
  250. curl_exec=bool curl_exec (resource ch) - Perform a CURL session
  251. curl_getinfo=string curl_getinfo (resource ch [, int opt]) - Get information regarding a specific transfer
  252. curl_init=resource curl_init ([string url]) - Initialize a CURL session
  253. curl_multi_add_handle=int curl_multi_add_handle (resource mh, resource ch) - Add a normal cURL handle to a cURL multi handle
  254. curl_multi_close=void curl_multi_close (resource mh) - Close a set of cURL handles
  255. curl_multi_exec=int curl_multi_exec (resource mh) - Run the sub-connections of the current cURL handle
  256. curl_multi_getcontent=string curl_multi_getcontent (resource ch) - Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set
  257. curl_multi_info_read=array curl_multi_info_read (resource mh) - Get information about the current transfers
  258. curl_multi_init=resource curl_multi_init (void) - Returns a new cURL multi handle
  259. curl_multi_remove_handle=int curl_multi_remove_handle (resource mh, resource ch) - Remove a multi handle from a set of cURL handles
  260. curl_multi_select=int curl_multi_select (resource mh [, float timeout]) - Get all the sockets associated with the cURL extension, which can then be selected
  261. curl_setopt=bool curl_setopt (resource ch, string option, mixed value) - Set an option for a CURL transfer
  262. curl_version=string curl_version (void) - Return the current CURL version
  263. current=mixed current (array array) - Return the current element in an array
  264. cybercash_base64_decode=string cybercash_base64_decode (string inbuff) - base64 decode data for Cybercash
  265. cybercash_base64_encode=string cybercash_base64_encode (string inbuff) - base64 encode data for Cybercash
  266. cybercash_decr=array cybercash_decr (string wmk, string sk, string inbuff) - Cybercash decrypt
  267. cybercash_encr=array cybercash_encr (string wmk, string sk, string inbuff) - Cybercash encrypt
  268. cyrus_authenticate=bool cyrus_authenticate (resource connection [, string mechlist [, string service [, string user [, int minssf [, int maxssf]]]]]) - Authenticate against a Cyrus IMAP server
  269. cyrus_bind=bool cyrus_bind (resource connection, array callbacks) - Bind callbacks to a Cyrus IMAP connection
  270. cyrus_close=bool cyrus_close (resource connection) - Close connection to a Cyrus IMAP server
  271. cyrus_connect=resource cyrus_connect ([string host [, string port [, int flags]]]) - Connect to a Cyrus IMAP server
  272. cyrus_query=bool cyrus_query (resource connection, string query) - Send a query to a Cyrus IMAP server
  273. cyrus_unbind=bool cyrus_unbind (resource connection, string trigger_name) - Unbind ...
  274. date=string date (string format [, int timestamp]) - Format a local time/date
  275. dba_close=void dba_close (resource handle) - Close database
  276. dba_delete=bool dba_delete (string key, resource handle) - Delete entry specified by key
  277. dba_exists=bool dba_exists (string key, resource handle) - Check whether key exists
  278. dba_fetch=string dba_fetch (string key, resource handle) - Fetch data specified by key
  279. dba_firstkey=string dba_firstkey (resource handle) - Fetch first key
  280. dba_handlers=array dba_handlers (void) - List handlers available
  281. dba_insert=bool dba_insert (string key, string value, resource handle) - Insert entry
  282. dba_list=array dba_list (void) - List all open database files
  283. dba_nextkey=string dba_nextkey (resource handle) - Fetch next key
  284. dba_open=resource dba_open (string path, string mode, string handler [, ...]) - Open database
  285. dba_optimize=bool dba_optimize (resource handle) - Optimize database
  286. dba_popen=resource dba_popen (string path, string mode, string handler [, ...]) - Open database persistently
  287. dba_replace=bool dba_replace (string key, string value, resource handle) - Replace or insert entry
  288. dba_sync=bool dba_sync (resource handle) - Synchronize database
  289. dbase_add_record=bool dbase_add_record (int dbase_identifier, array record) - Add a record to a dBase database
  290. dbase_close=bool dbase_close (int dbase_identifier) - Close a dBase database
  291. dbase_create=int dbase_create (string filename, array fields) - Creates a dBase database
  292. dbase_delete_record=bool dbase_delete_record (int dbase_identifier, int record) - Deletes a record from a dBase database
  293. dbase_get_record=array dbase_get_record (int dbase_identifier, int record) - Gets a record from a dBase database
  294. dbase_get_record_with_names=array dbase_get_record_with_names (int dbase_identifier, int record) - Gets a record from a dBase database as an associative array
  295. dbase_numfields=int dbase_numfields (int dbase_identifier) - Find out how many fields are in a dBase database
  296. dbase_numrecords=int dbase_numrecords (int dbase_identifier) - Find out how many records are in a dBase database
  297. dbase_open=int dbase_open (string filename, int flags) - Opens a dBase database
  298. dbase_pack=bool dbase_pack (int dbase_identifier) - Packs a dBase database
  299. dbase_replace_record=bool dbase_replace_record (int dbase_identifier, array record, int dbase_record_number) - Replace a record in a dBase database
  300. dblist=string dblist (void) - Describes the DBM-compatible library being used
  301. dbmclose=bool dbmclose (resource dbm_identifier) - Closes a dbm database
  302. dbmdelete=bool dbmdelete (resource dbm_identifier, string key) - Deletes the value for a key from a DBM database
  303. dbmexists=bool dbmexists (resource dbm_identifier, string key) - Tells if a value exists for a key in a DBM database
  304. dbmfetch=string dbmfetch (resource dbm_identifier, string key) - Fetches a value for a key from a DBM database
  305. dbmfirstkey=string dbmfirstkey (resource dbm_identifier) - Retrieves the first key from a DBM database
  306. dbminsert=int dbminsert (resource dbm_identifier, string key, string value) - Inserts a value for a key in a DBM database
  307. dbmnextkey=string dbmnextkey (resource dbm_identifier, string key) - Retrieves the next key from a DBM database
  308. dbmopen=resource dbmopen (string filename, string flags) - Opens a DBM database
  309. dbmreplace=int dbmreplace (resource dbm_identifier, string key, string value) - Replaces the value for a key in a DBM database
  310. dbplus_add=int dbplus_add (resource relation, array tuple) - Add a tuple to a relation
  311. dbplus_aql=resource dbplus_aql (string query [, string server [, string dbpath]]) - Perform AQL query
  312. dbplus_chdir=string dbplus_chdir ([string newdir]) - Get/Set database virtual current directory
  313. dbplus_close=int dbplus_close (resource relation) - Close a relation
  314. dbplus_curr=int dbplus_curr (resource relation, array tuple) - Get current tuple from relation
  315. dbplus_errcode=string dbplus_errcode (int errno) - Get error string for given errorcode or last error
  316. dbplus_errno=int dbplus_errno (void) - Get error code for last operation
  317. dbplus_find=int dbplus_find (resource relation, array constraints, mixed tuple) - Set a constraint on a relation
  318. dbplus_first=int dbplus_first (resource relation, array tuple) - Get first tuple from relation
  319. dbplus_flush=int dbplus_flush (resource relation) - Flush all changes made on a relation
  320. dbplus_freealllocks=int dbplus_freealllocks (void) - Free all locks held by this client
  321. dbplus_freelock=int dbplus_freelock (resource relation, string tname) - Release write lock on tuple
  322. dbplus_freerlocks=int dbplus_freerlocks (resource relation) - Free all tuple locks on given relation
  323. dbplus_getlock=int dbplus_getlock (resource relation, string tname) - Get a write lock on a tuple
  324. dbplus_getunique=int dbplus_getunique (resource relation, int uniqueid) - Get an id number unique to a relation
  325. dbplus_info=int dbplus_info (resource relation, string key, array) -
  326. dbplus_last=int dbplus_last (resource relation, array tuple) - Get last tuple from relation
  327. dbplus_lockrel=int dbplus_lockrel (resource relation) - Request write lock on relation
  328. dbplus_next=int dbplus_next (resource relation, array) - Get next tuple from relation
  329. dbplus_open=resource dbplus_open (string name) - Open relation file
  330. dbplus_prev=int dbplus_prev (resource relation, array tuple) - Get previous tuple from relation
  331. dbplus_rchperm=int dbplus_rchperm (resource relation, int mask, string user, string group) - Change relation permissions
  332. dbplus_rcreate=resource dbplus_rcreate (string name, mixed domlist [, bool overwrite]) - Creates a new DB++ relation
  333. dbplus_rcrtexact=resource dbplus_rcrtexact (string name, resource relation, bool overwrite) - Creates an exact but empty copy of a relation including indices
  334. dbplus_rcrtlike=resource dbplus_rcrtlike (string name, resource relation, int flag) - Creates an empty copy of a relation with default indices
  335. dbplus_resolve=int dbplus_resolve (string relation_name) - Resolve host information for relation
  336. dbplus_restorepos=int dbplus_restorepos (resource relation, array tuple) -
  337. dbplus_rkeys=resource dbplus_rkeys (resource relation, mixed domlist) - Specify new primary key for a relation
  338. dbplus_ropen=resource dbplus_ropen (string name) - Open relation file local
  339. dbplus_rquery=int dbplus_rquery (string query, string dbpath) - Perform local (raw) AQL query
  340. dbplus_rrename=int dbplus_rrename (resource relation, string name) - Rename a relation
  341. dbplus_rsecindex=resource dbplus_rsecindex (resource relation, mixed domlist, int type) - Create a new secondary index for a relation
  342. dbplus_runlink=int dbplus_runlink (resource relation) - Remove relation from filesystem
  343. dbplus_rzap=int dbplus_rzap (resource relation) - Remove all tuples from relation
  344. dbplus_savepos=int dbplus_savepos (resource relation) -
  345. dbplus_setindex=int dbplus_setindex (resource relation, string idx_name) -
  346. dbplus_setindexbynumber=int dbplus_setindexbynumber (resource relation, int idx_number) -
  347. dbplus_sql=resource dbplus_sql (string query, string server, string dbpath) - Perform SQL query
  348. dbplus_tcl=int dbplus_tcl (int sid, string script) - Execute TCL code on server side
  349. dbplus_tremove=int dbplus_tremove (resource relation, array tuple [, array current]) - Remove tuple and return new current tuple
  350. dbplus_undo=int dbplus_undo (resource relation) -
  351. dbplus_undoprepare=int dbplus_undoprepare (resource relation) -
  352. dbplus_unlockrel=int dbplus_unlockrel (resource relation) - Give up write lock on relation
  353. dbplus_unselect=int dbplus_unselect (resource relation) - Remove a constraint from relation
  354. dbplus_update=int dbplus_update (resource relation, array old, array new) - Update specified tuple in relation
  355. dbplus_xlockrel=int dbplus_xlockrel (resource relation) - Request exclusive lock on relation
  356. dbplus_xunlockrel=int dbplus_xunlockrel (resource relation) - Free exclusive lock on relation
  357. dbx_close=bool dbx_close (object link_identifier) - Close an open connection/database
  358. dbx_compare=int dbx_compare (array row_a, array row_b, string column_key [, int flags]) - Compare two rows for sorting purposes
  359. dbx_connect=object dbx_connect (mixed module, string host, string database, string username, string password [, int persistent]) - Open a connection/database
  360. dbx_error=string dbx_error (object link_identifier) - Report the error message of the latest function call in the module (not just in the connection)
  361. dbx_escape_string=string dbx_escape_string (object link_identifier, string text) - Escape a string so it can safely be used in an sql-statement.
  362. dbx_query=object dbx_query (object link_identifier, string sql_statement [, long flags]) - Send a query and fetch all results (if any)
  363. dbx_sort=bool dbx_sort (object result, string user_compare_function) - Sort a result from a dbx_query by a custom sort function
  364. dcgettext=string dcgettext (string domain, string message, int category) - Overrides the domain for a single lookup
  365. dcngettext=string dcngettext (string domain, string msgid1, string msgid2, int n, int category) - Plural version of dcgettext
  366. deaggregate=void deaggregate (object object [, string class_name]) - Removes the aggregated methods and properties from an object
  367. debug_backtrace=array debug_backtrace (void) - Generates a backtrace
  368. debug_print_backtrace=void debug_print_backtrace (void) - Prints a backtrace
  369. debugger_off=int debugger_off (void) - Disable internal PHP debugger (PHP 3)
  370. debugger_on=int debugger_on (string address) - Enable internal PHP debugger (PHP 3)
  371. decbin=string decbin (int number) - Decimal to binary
  372. dechex=string dechex (int number) - Decimal to hexadecimal
  373. decoct=string decoct (int number) - Decimal to octal
  374. define=bool define (string name, mixed value [, bool case_insensitive]) - Defines a named constant.
  375. define_syslog_variables=void define_syslog_variables (void) - Initializes all syslog related constants
  376. defined=bool defined (string name) - Checks whether a given named constant exists
  377. deg2rad=float deg2rad (float number) - Converts the number in degrees to the radian equivalent
  378. delete=void delete (string file) - See
  379. dgettext=string dgettext (string domain, string message) - Override the current domain
  380. die=void die ([string status]) - Output a message and terminate the current script
  381. dio_close=void dio_close (resource fd) - Closes the file descriptor given by fd
  382. dio_fcntl=mixed dio_fcntl (resource fd, int cmd [, mixed arg]) - Performs a c library fcntl on fd
  383. dio_open=resource dio_open (string filename, int flags [, int mode]) - Opens a new filename with specified permissions of flags and creation permissions of mode
  384. dio_read=string dio_read (resource fd [, int n]) - Reads n bytes from fd and returns them, if n is not specified, reads 1k block
  385. dio_seek=int dio_seek (resource fd, int pos, int whence) - Seeks to pos on fd from whence
  386. dio_stat=array dio_stat (resource fd) - Gets stat information about the file descriptor fd
  387. dio_tcsetattr=dio_tcsetattr (resource fd, array options) - Sets terminal attributes and baud rate for a serial port
  388. dio_truncate=bool dio_truncate (resource fd, int offset) - Truncates file descriptor fd to offset bytes
  389. dio_write=int dio_write (resource fd, string data [, int len]) - Writes data to fd with optional truncation at length
  390. dir=dir(string directory) - directory class
  391. dirname=string dirname (string path) - Returns directory name component of path
  392. disk_free_space=float disk_free_space (string directory) - Returns available space in directory
  393. disk_total_space=float disk_total_space (string directory) - Returns the total size of a directory
  394. diskfreespace=float disk_free_space (string directory) - Returns available space in directory
  395. dl=int dl (string library) - Loads a PHP extension at runtime
  396. dngettext=string dngettext (string domain, string msgid1, string msgid2, int n) - Plural version of dgettext
  397. dns_check_record=int dns_check_record (string host [, string type]) - Synonym for
  398. dns_get_mx=int dns_get_mx (string hostname, array mxhosts [, array &weight]) - Synonym for
  399. dns_get_record=array dns_get_record (string hostname [, int type [, array &authns, array &addtl]]) - Fetch DNS Resource Records associated with a hostname
  400. domxml_new_doc=object domxml_new_doc (string version) - Creates new empty XML document
  401. domxml_open_file=object domxml_open_file (string filename) - Creates a DOM object from XML file
  402. domxml_open_mem=object domxml_open_mem (string str) - Creates a DOM object of an XML document
  403. domxml_version=string domxml_version (void) - Get XML library version
  404. domxml_xmltree=object domxml_xmltree (string str) - Creates a tree of PHP objects from an XML document
  405. domxml_xslt_stylesheet=object domxml_xslt_stylesheet (string xsl document) - Creates a DomXsltStylesheet Object from a xml document in a string.
  406. domxml_xslt_stylesheet_doc=object domxml_xslt_stylesheet_doc (object DocDocument Object) - Creates a DomXsltStylesheet Object from a DomDocument Object.
  407. domxml_xslt_stylesheet_file=object domxml_xslt_stylesheet_file (string xsl file) - Creates a DomXsltStylesheet Object from a xsl document in a file.
  408. dotnet_load=int dotnet_load (string assembly_name [, string datatype_name [, int codepage]]) - Loads a DOTNET module
  409. doubleval=float floatval (mixed var) - Get float value of a variable
  410. each=array each (array array) - Return the current key and value pair from an array and advance the array cursor
  411. easter_date=int easter_date ([int year]) - Get UNIX timestamp for midnight on Easter of a given year
  412. easter_days=int easter_days ([int year [, int method]]) - Get number of days after March 21 on which Easter falls for a given year
  413. ebcdic2ascii=int ebcdic2ascii (string ebcdic_str) - Translate string from EBCDIC to ASCII
  414. echo=void echo (string arg1 [, string argn...]) - Output one or more strings
  415. empty=bool empty (mixed var) - Determine whether a variable is empty
  416. end=mixed end (array array) - Set the internal pointer of an array to its last element
  417. ereg=bool ereg (string pattern, string string [, array regs]) - Regular expression match
  418. ereg_replace=string ereg_replace (string pattern, string replacement, string string) - Replace regular expression
  419. eregi=bool eregi (string pattern, string string [, array regs]) - case insensitive regular expression match
  420. eregi_replace=string eregi_replace (string pattern, string replacement, string string) - replace regular expression case insensitive
  421. error_log=int error_log (string message [, int message_type [, string destination [, string extra_headers]]]) - Send an error message somewhere
  422. error_reporting=int error_reporting ([int level]) - Sets which PHP errors are reported
  423. escapeshellarg=string escapeshellarg (string arg) - escape a string to be used as a shell argument
  424. escapeshellcmd=string escapeshellcmd (string command) - escape shell metacharacters
  425. eval=mixed eval (string code_str) - Evaluate a string as PHP code
  426. exec=string exec (string command [, array output [, int return_var]]) - Execute an external program
  427. exif_imagetype=int exif_imagetype (string filename) - Determine the type of an image
  428. exif_read_data=array exif_read_data (string filename [, string sections [, bool arrays [, bool thumbnail]]]) - Reads the
  429. exif_thumbnail=string exif_thumbnail (string filename [, int &width [, int &height [, int &imagetype]]]) - Retrieve the embedded thumbnail of a TIFF or JPEG image
  430. exit=void exit ([string status]) - Output a message and terminate the current script
  431. exp=float exp (float arg) - Calculates the exponent of
  432. explode=array explode (string separator, string string [, int limit]) - Split a string by string
  433. expm1=float expm1 (float number) - Returns exp(number) - 1, computed in a way that is accurate even when the value of number is close to zero
  434. extension_loaded=bool extension_loaded (string name) - Find out whether an extension is loaded
  435. extract=int extract (array var_array [, int extract_type [, string prefix]]) - Import variables into the current symbol table from an array
  436. ezmlm_hash=int ezmlm_hash (string addr) - Calculate the hash value needed by EZMLM
  437. fbsql_affected_rows=int fbsql_affected_rows ([resource link_identifier]) - Get number of affected rows in previous FrontBase operation
  438. fbsql_autocommit=bool fbsql_autocommit (resource link_identifier [, bool OnOff]) - Enable or disable autocommit
  439. fbsql_change_user=resource fbsql_change_user (string user, string password [, string database [, resource link_identifier]]) - Change logged in user of the active connection
  440. fbsql_close=bool fbsql_close ([resource link_identifier]) - Close FrontBase connection
  441. fbsql_commit=bool fbsql_commit ([resource link_identifier]) - Commits a transaction to the database
  442. fbsql_connect=resource fbsql_connect ([string hostname [, string username [, string password]]]) - Open a connection to a FrontBase Server
  443. fbsql_create_blob=string fbsql_create_blob (string blob_data [, resource link_identifier]) - Create a BLOB
  444. fbsql_create_clob=string fbsql_create_clob (string clob_data [, resource link_identifier]) - Create a CLOB
  445. fbsql_create_db=bool fbsql_create_db (string database_name [, resource link_identifier]) - Create a FrontBase database
  446. fbsql_data_seek=bool fbsql_data_seek (resource result_identifier, int row_number) - Move internal result pointer
  447. fbsql_database=string fbsql_database (resource link_identifier [, string database]) - Get or set the database name used with a connection
  448. fbsql_database_password=string fbsql_database_password (resource link_identifier [, string database_password]) - Sets or retrieves the password for a FrontBase database
  449. fbsql_db_query=resource fbsql_db_query (string database, string query [, resource link_identifier]) - Send a FrontBase query
  450. fbsql_db_status=int fbsql_db_status (string database_name [, resource link_identifier]) - Get the status for a given database
  451. fbsql_drop_db=bool fbsql_drop_db (string database_name [, resource link_identifier]) - Drop (delete) a FrontBase database
  452. fbsql_errno=int fbsql_errno ([resource link_identifier]) - Returns the numerical value of the error message from previous FrontBase operation
  453. fbsql_error=string fbsql_error ([resource link_identifier]) - Returns the text of the error message from previous FrontBase operation
  454. fbsql_fetch_array=array fbsql_fetch_array (resource result [, int result_type]) - Fetch a result row as an associative array, a numeric array, or both
  455. fbsql_fetch_assoc=array fbsql_fetch_assoc (resource result) - Fetch a result row as an associative array
  456. fbsql_fetch_field=object fbsql_fetch_field (resource result [, int field_offset]) - Get column information from a result and return as an object
  457. fbsql_fetch_lengths=array fbsql_fetch_lengths ([resource result]) - Get the length of each output in a result
  458. fbsql_fetch_object=object fbsql_fetch_object (resource result [, int result_type]) - Fetch a result row as an object
  459. fbsql_fetch_row=array fbsql_fetch_row (resource result) - Get a result row as an enumerated array
  460. fbsql_field_flags=string fbsql_field_flags (resource result, int field_offset) - Get the flags associated with the specified field in a result
  461. fbsql_field_len=int fbsql_field_len (resource result, int field_offset) - Returns the length of the specified field
  462. fbsql_field_name=string fbsql_field_name (resource result, int field_index) - Get the name of the specified field in a result
  463. fbsql_field_seek=bool fbsql_field_seek (resource result, int field_offset) - Set result pointer to a specified field offset
  464. fbsql_field_table=string fbsql_field_table (resource result, int field_offset) - Get name of the table the specified field is in
  465. fbsql_field_type=string fbsql_field_type (resource result, int field_offset) - Get the type of the specified field in a result
  466. fbsql_free_result=bool fbsql_free_result (resource result) - Free result memory
  467. fbsql_get_autostart_info=array fbsql_get_autostart_info ([resource link_identifier]) - No description given yet
  468. fbsql_hostname=string fbsql_hostname (resource link_identifier [, string host_name]) - Get or set the host name used with a connection
  469. fbsql_insert_id=int fbsql_insert_id ([resource link_identifier]) - Get the id generated from the previous INSERT operation
  470. fbsql_list_dbs=resource fbsql_list_dbs ([resource link_identifier]) - List databases available on a FrontBase server
  471. fbsql_list_fields=resource fbsql_list_fields (string database_name, string table_name [, resource link_identifier]) - List FrontBase result fields
  472. fbsql_list_tables=resource fbsql_list_tables (string database [, resource link_identifier]) - List tables in a FrontBase database
  473. fbsql_next_result=bool fbsql_next_result (resource result_id) - Move the internal result pointer to the next result
  474. fbsql_num_fields=int fbsql_num_fields (resource result) - Get number of fields in result
  475. fbsql_num_rows=int fbsql_num_rows (resource result) - Get number of rows in result
  476. fbsql_password=string fbsql_password (resource link_identifier [, string password]) - Get or set the user password used with a connection
  477. fbsql_pconnect=resource fbsql_pconnect ([string hostname [, string username [, string password]]]) - Open a persistent connection to a FrontBase Server
  478. fbsql_query=resource fbsql_query (string query [, resource link_identifier]) - Send a FrontBase query
  479. fbsql_read_blob=string fbsql_read_blob (string blob_handle [, resource link_identifier]) - Read a BLOB from the database
  480. fbsql_read_clob=string fbsql_read_clob (string clob_handle [, resource link_identifier]) - Read a CLOB from the database
  481. fbsql_result=mixed fbsql_result (resource result, int row [, mixed field]) - Get result data
  482. fbsql_rollback=bool fbsql_rollback ([resource link_identifier]) - Rollback a transaction to the database
  483. fbsql_select_db=bool fbsql_select_db (string database_name [, resource link_identifier]) - Select a FrontBase database
  484. fbsql_set_lob_mode=bool fbsql_set_lob_mode (resource result, string database_name) - Set the LOB retrieve mode for a FrontBase result set
  485. fbsql_set_transaction=void fbsql_set_transaction (resource link_identifier, int Locking, int Isolation) - Set the transaction locking and isolation
  486. fbsql_start_db=bool fbsql_start_db (string database_name [, resource link_identifier]) - Start a database on local or remote server
  487. fbsql_stop_db=bool fbsql_stop_db (string database_name [, resource link_identifier]) - Stop a database on local or remote server
  488. fbsql_tablename=string fbsql_tablename (resource result, int i) - Get table name of field
  489. fbsql_username=string fbsql_username (resource link_identifier [, string username]) - Get or set the host user used with a connection
  490. fbsql_warnings=bool fbsql_warnings ([bool OnOff]) - Enable or disable FrontBase warnings
  491. fclose=bool fclose (resource handle) - Closes an open file pointer
  492. fdf_add_doc_javascript=bool fdf_add_doc_javascript (resource fdfdoc, string script_name, string script_code) - Adds javascript code to the FDF document
  493. fdf_add_template=bool fdf_add_template (resource fdfdoc, int newpage, string filename, string template, int rename) - Adds a template into the FDF document
  494. fdf_close=bool fdf_close (resource fdf_document) - Close an FDF document
  495. fdf_create=resource fdf_create (void) - Create a new FDF document
  496. fdf_enum_values=bool fdf_enum_values (resource fdfdoc, callback function [, mixed userdata]) - Call a user defined function for each document value
  497. fdf_errno=int fdf_errno (void) - Return error code for last fdf operation
  498. fdf_error=string fdf_error ([int error_code]) - Return error description for fdf error code
  499. fdf_get_ap=bool fdf_get_ap (resource fdf_document, string field, int face, string filename) - Get the appearance of a field
  500. fdf_get_attachment=array fdf_get_attachment (resource fdf_document, string fieldname, string savepath) - Extracts uploaded file embedded in the FDF
  501. fdf_get_encoding=string fdf_get_encoding (resource fdf_document) - Get the value of the /Encoding key
  502. fdf_get_file=string fdf_get_file (resource fdf_document) - Get the value of the /F key
  503. fdf_get_flags=fdf_get_flags (void) - Gets the flags of a field
  504. fdf_get_opt=mixed fdf_get_opt (resource fdfdof, string fieldname [, int element]) - Gets a value from the opt array of a field
  505. fdf_get_status=string fdf_get_status (resource fdf_document) - Get the value of the /STATUS key
  506. fdf_get_value=string fdf_get_value (resource fdf_document, string fieldname [, int which]) - Get the value of a field
  507. fdf_get_version=string fdf_get_version ([resource fdf_document]) - Gets version number for FDF api or file
  508. fdf_header=bool fdf_header (void) - Sets FDF-specific output headers
  509. fdf_next_field_name=string fdf_next_field_name (resource fdf_document [, string fieldname]) - Get the next field name
  510. fdf_open=resource fdf_open (string filename) - Open a FDF document
  511. fdf_open_string=resource fdf_open_string (string fdf_data) - Read a FDF document from a string
  512. fdf_remove_item=bool fdf_remove_item (resource fdfdoc, string fieldname, int item) - Sets target frame for form
  513. fdf_save=bool fdf_save (resource fdf_document [, string filename]) - Save a FDF document
  514. fdf_save_string=string fdf_save_string (resource fdf_document) - Returns the FDF document as a string
  515. fdf_set_ap=bool fdf_set_ap (resource fdf_document, string field_name, int face, string filename, int page_number) - Set the appearance of a field
  516. fdf_set_encoding=bool fdf_set_encoding (resource fdf_document, string encoding) - Sets FDF character encoding
  517. fdf_set_file=bool fdf_set_file (resource fdf_document, string url [, string target_frame]) - Set PDF document to display FDF data in
  518. fdf_set_flags=bool fdf_set_flags (resource fdf_document, string fieldname, int whichFlags, int newFlags) - Sets a flag of a field
  519. fdf_set_javascript_action=bool fdf_set_javascript_action (resource fdf_document, string fieldname, int trigger, string script) - Sets an javascript action of a field
  520. fdf_set_opt=bool fdf_set_opt (resource fdf_document, string fieldname, int element, string str1, string str2) - Sets an option of a field
  521. fdf_set_status=bool fdf_set_status (resource fdf_document, string status) - Set the value of the /STATUS key
  522. fdf_set_submit_form_action=bool fdf_set_submit_form_action (resource fdf_document, string fieldname, int trigger, string script, int flags) - Sets a submit form action of a field
  523. fdf_set_target_frame=bool fdf_set_target_frame (resource fdf_document, string frame_name) - Set target frame for form display
  524. fdf_set_value=bool fdf_set_value (resource fdf_document, string fieldname, mixed value [, int isName]) - Set the value of a field
  525. fdf_set_version=string fdf_set_version (resource fdf_document, string version) - Sets version number for a FDF file
  526. feof=bool feof (resource handle) - Tests for end-of-file on a file pointer
  527. fflush=bool fflush (resource handle) - Flushes the output to a file
  528. fgetc=string fgetc (resource handle) - Gets character from file pointer
  529. fgetcsv=array fgetcsv (resource handle, int length [, string delimiter [, string enclosure]]) - Gets line from file pointer and parse for CSV fields
  530. fgets=string fgets (resource handle [, int length]) - Gets line from file pointer
  531. fgetss=string fgetss (resource handle, int length [, string allowable_tags]) - Gets line from file pointer and strip HTML tags
  532. file=array file (string filename [, int use_include_path [, resource context]]) - Reads entire file into an array
  533. file_exists=bool file_exists (string filename) - Checks whether a file or directory exists
  534. file_get_contents=string file_get_contents (string filename [, int use_include_path [, resource context]]) - Reads entire file into a string
  535. file_put_contents=int file_put_contents (string filename, string data [, int flags [, resource context]]) - Write a string to a file
  536. fileatime=int fileatime (string filename) - Gets last access time of file
  537. filectime=int filectime (string filename) - Gets inode change time of file
  538. filegroup=int filegroup (string filename) - Gets file group
  539. fileinode=int fileinode (string filename) - Gets file inode
  540. filemtime=int filemtime (string filename) - Gets file modification time
  541. fileowner=int fileowner (string filename) - Gets file owner
  542. fileperms=int fileperms (string filename) - Gets file permissions
  543. filepro=bool filepro (string directory) - Read and verify the map file
  544. filepro_fieldcount=int filepro_fieldcount (void) - Find out how many fields are in a filePro database
  545. filepro_fieldname=string filepro_fieldname (int field_number) - Gets the name of a field
  546. filepro_fieldtype=string filepro_fieldtype (int field_number) - Gets the type of a field
  547. filepro_fieldwidth=int filepro_fieldwidth (int field_number) - Gets the width of a field
  548. filepro_retrieve=string filepro_retrieve (int row_number, int field_number) - Retrieves data from a filePro database
  549. filepro_rowcount=int filepro_rowcount (void) - Find out how many rows are in a filePro database
  550. filesize=int filesize (string filename) - Gets file size
  551. filetype=string filetype (string filename) - Gets file type
  552. floatval=float floatval (mixed var) - Get float value of a variable
  553. flock=bool flock (resource handle, int operation [, int &wouldblock]) - Portable advisory file locking
  554. floor=float floor (float value) - Round fractions down
  555. flush=void flush (void) - Flush the output buffer
  556. fmod=float fmod (float x, float y) - Returns the floating point remainder (modulo) of the division of the arguments
  557. fnmatch=array fnmatch (string pattern, string string [, int flags]) - Match filename against a  pattern
  558. fopen=resource fopen (string filename, string mode [, int use_include_path [, resource zcontext]]) - Opens file or URL
  559. fpassthru=int fpassthru (resource handle) - Output all remaining data on a file pointer
  560. fprintf=int fprintf (resource handle, string format [, mixed args]) - Write a formatted string to a stream
  561. fputs=int fputs (resource handle, string string [, int length]) - Binary-safe file write
  562. fread=string fread (resource handle, int length) - Binary-safe file read
  563. frenchtojd=int frenchtojd (int month, int day, int year) - Converts a date from the French Republican Calendar to a Julian Day Count
  564. fribidi_log2vis=string fribidi_log2vis (string str, string direction, int charset) - Convert a logical string to a visual one
  565. fscanf=mixed fscanf (resource handle, string format [, string var1]) - Parses input from a file according to a format
  566. fseek=int fseek (resource handle, int offset [, int whence]) - Seeks on a file pointer
  567. fsockopen=int fsockopen (string target, int port [, int errno [, string errstr [, float timeout]]]) - Open Internet or Unix domain socket connection
  568. fstat=array fstat (resource handle) - Gets information about a file using an open file pointer
  569. ftell=int ftell (resource handle) - Tells file pointer read/write position
  570. ftok=int ftok (string pathname, string proj) - Convert a pathname and a project identifier to a System V IPC key
  571. ftp_cdup=bool ftp_cdup (resource ftp_stream) - Changes to the parent directory
  572. ftp_chdir=bool ftp_chdir (resource ftp_stream, string directory) - Changes directories on a FTP server
  573. ftp_chmod=string ftp_chmod (resource ftp_stream, int mode, string filename) - Set permissions on a file via FTP
  574. ftp_close=void ftp_close (resource ftp_stream) - Closes an FTP connection
  575. ftp_connect=resource ftp_connect (string host [, int port [, int timeout]]) - Opens an FTP connection
  576. ftp_delete=bool ftp_delete (resource ftp_stream, string path) - Deletes a file on the FTP server
  577. ftp_exec=bool ftp_exec (resource ftp_stream, string command) - Requests execution of a program on the FTP server
  578. ftp_fget=bool ftp_fget (resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos]) - Downloads a file from the FTP server and saves to an open file
  579. ftp_fput=bool ftp_fput (resource ftp_stream, string remote_file, resource handle, int mode [, int startpos]) - Uploads from an open file to the FTP server
  580. ftp_get=bool ftp_get (resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos]) - Downloads a file from the FTP server
  581. ftp_get_option=mixed ftp_get_option (resource ftp_stream, int option) - Retrieves various runtime behaviours of the current FTP stream
  582. ftp_login=bool ftp_login (resource ftp_stream, string username, string password) - Logs in to an FTP connection
  583. ftp_mdtm=int ftp_mdtm (resource ftp_stream, string remote_file) - Returns the last modified time of the given file
  584. ftp_mkdir=string ftp_mkdir (resource ftp_stream, string directory) - Creates a directory
  585. ftp_nb_continue=bool ftp_nb_continue (resource ftp_stream) - Continues retrieving/sending a file (non-blocking)
  586. ftp_nb_fget=bool ftp_nb_fget (resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos]) - Retrieves a file from the FTP server and writes it to an open file (non-blocking)
  587. ftp_nb_fput=bool ftp_nb_fput (resource ftp_stream, string remote_file, resource handle, int mode [, int startpos]) - Stores a file from an open file to the FTP server (non-blocking)
  588. ftp_nb_get=bool ftp_nb_get (resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos]) - Retrieves a file from the FTP server and writes it to a local file (non-blocking)
  589. ftp_nb_put=bool ftp_nb_put (resource ftp_stream, string remote_file, string local_file, int mode [, int startpos]) - Stores a file on the FTP server (non-blocking)
  590. ftp_nlist=array ftp_nlist (resource ftp_stream, string directory) - Returns a list of files in the given directory
  591. ftp_pasv=bool ftp_pasv (resource ftp_stream, bool pasv) - Turns passive mode on or off
  592. ftp_put=bool ftp_put (resource ftp_stream, string remote_file, string local_file, int mode [, int startpos]) - Uploads a file to the FTP server
  593. ftp_pwd=string ftp_pwd (resource ftp_stream) - Returns the current directory name
  594. ftp_quit=void ftp_close (resource ftp_stream) - Closes an FTP connection
  595. ftp_raw=array ftp_raw (resource ftp_stream, string command) - Sends an arbitrary command to an FTP server
  596. ftp_rawlist=array ftp_rawlist (resource ftp_stream, string directory) - Returns a detailed list of files in the given directory
  597. ftp_rename=bool ftp_rename (resource ftp_stream, string from, string to) - Renames a file on the FTP server
  598. ftp_rmdir=bool ftp_rmdir (resource ftp_stream, string directory) - Removes a directory
  599. ftp_set_option=bool ftp_set_option (resource ftp_stream, int option, mixed value) - Set miscellaneous runtime FTP options
  600. ftp_site=bool ftp_site (resource ftp_stream, string cmd) - Sends a SITE command to the server
  601. ftp_size=int ftp_size (resource ftp_stream, string remote_file) - Returns the size of the given file
  602. ftp_ssl_connect=resource ftp_ssl_connect (string host [, int port [, int timeout]]) - Opens an Secure SSL-FTP connection
  603. ftp_systype=string ftp_systype (resource ftp_stream) - Returns the system type identifier of the remote FTP server
  604. ftruncate=bool ftruncate (resource handle, int size) - Truncates a file to a given length
  605. func_get_arg=mixed func_get_arg (int arg_num) - Return an item from the argument list
  606. func_get_args=array func_get_args (void) - Returns an array comprising a function's argument list
  607. func_num_args=int func_num_args (void) - Returns the number of arguments passed to the function
  608. function_exists=bool function_exists (string function_name) - Return TRUE if the given function has been defined
  609. fwrite=int fwrite (resource handle, string string [, int length]) - Binary-safe file write
  610. gd_info=array gd_info (void) - Retrieve information about the currently installed GD library
  611. get_browser=object get_browser ([string user_agent]) - Tells what the user's browser is capable of
  612. get_cfg_var=string get_cfg_var (string varname) - Gets the value of a PHP configuration option
  613. get_class=string get_class (object obj) - Returns the name of the class of an object
  614. get_class_methods=array get_class_methods (mixed class_name) - Returns an array of class methods' names
  615. get_class_vars=array get_class_vars (string class_name) - Returns an array of default properties of the class
  616. get_current_user=string get_current_user (void) - Gets the name of the owner of the current PHP script
  617. get_declared_classes=array get_declared_classes (void) - Returns an array with the name of the defined classes
  618. get_defined_constants=array get_defined_constants (void) - Returns an associative array with the names of all the constants and their values
  619. get_defined_functions=array get_defined_functions (void) - Returns an array of all defined functions
  620. get_defined_vars=array get_defined_vars (void) - Returns an array of all defined variables
  621. get_extension_funcs=array get_extension_funcs (string module_name) - Returns an array with the names of the functions of a module
  622. get_html_translation_table=array get_html_translation_table (int table [, int quote_style]) - Returns the translation table used by
  623. get_include_path=string get_include_path (void) - Gets the current include_path configuration option
  624. get_included_files=array get_included_files (void) - Returns an array with the names of included or required files
  625. get_loaded_extensions=array get_loaded_extensions (void) - Returns an array with the names of all modules compiled and loaded
  626. get_magic_quotes_gpc=int get_magic_quotes_gpc (void) - Gets the current active configuration setting of magic quotes gpc
  627. get_magic_quotes_runtime=int get_magic_quotes_runtime (void) - Gets the current active configuration setting of magic_quotes_runtime
  628. get_meta_tags=array get_meta_tags (string filename [, int use_include_path]) - Extracts all meta tag content attributes from a file and returns an array
  629. get_object_vars=array get_object_vars (object obj) - Returns an associative array of object properties
  630. get_parent_class=string get_parent_class (mixed obj) - Retrieves the parent class name for object or class
  631. get_required_files=array get_included_files (void) - Returns an array with the names of included or required files
  632. get_resource_type=string get_resource_type (resource handle) - Returns the resource type
  633. getallheaders=array getallheaders (void) - Fetch all HTTP request headers
  634. getcwd=string getcwd (void) - gets the current working directory
  635. getdate=array getdate ([int timestamp]) - Get date/time information
  636. getenv=string getenv (string varname) - Gets the value of an environment variable
  637. gethostbyaddr=string gethostbyaddr (string ip_address) - Get the Internet host name corresponding to a given IP address
  638. gethostbyname=string gethostbyname (string hostname) - Get the IP address corresponding to a given Internet host name
  639. gethostbynamel=array gethostbynamel (string hostname) - Get a list of IP addresses corresponding to a given Internet host name
  640. getimagesize=array getimagesize (string filename [, array imageinfo]) - Get the size of an image
  641. getlastmod=int getlastmod (void) - Gets time of last page modification
  642. getmxrr=int getmxrr (string hostname, array mxhosts [, array weight]) - Get MX records corresponding to a given Internet host name
  643. getmygid=int getmygid (void) - Get PHP script owner's GID
  644. getmyinode=int getmyinode (void) - Gets the inode of the current script
  645. getmypid=int getmypid (void) - Gets PHP's process ID
  646. getmyuid=int getmyuid (void) - Gets PHP script owner's UID
  647. getopt=string getopt (string options) - Gets options from the command line argument list
  648. getprotobyname=int getprotobyname (string name) - Get protocol number associated with protocol name
  649. getprotobynumber=string getprotobynumber (int number) - Get protocol name associated with protocol number
  650. getrandmax=int getrandmax (void) - Show largest possible random value
  651. getrusage=array getrusage ([int who]) - Gets the current resource usages
  652. getservbyname=int getservbyname (string service, string protocol) - Get port number associated with an Internet service and protocol
  653. getservbyport=string getservbyport (int port, string protocol) - Get Internet service which corresponds to port and protocol
  654. gettext=string gettext (string message) - Lookup a message in the current domain
  655. gettimeofday=array gettimeofday (void) - Get current time
  656. gettype=string gettype (mixed var) - Get the type of a variable
  657. glob=array glob (string pattern [, int flags]) - Find pathnames matching a pattern
  658. gmdate=string gmdate (string format [, int timestamp]) - Format a GMT/UTC date/time
  659. gmmktime=int gmmktime ([int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]]) - Get UNIX timestamp for a GMT date
  660. gmp_abs=resource gmp_abs (resource a) - Absolute value
  661. gmp_add=resource gmp_add (resource a, resource b) - Add numbers
  662. gmp_and=resource gmp_and (resource a, resource b) - Logical AND
  663. gmp_clrbit=resource gmp_clrbit (resource &a, int index) - Clear bit
  664. gmp_cmp=int gmp_cmp (resource a, resource b) - Compare numbers
  665. gmp_com=resource gmp_com (resource a) - Calculates one's complement of a
  666. gmp_div=resource gmp_div (resource a, resource b [, int round]) - Divide numbers
  667. gmp_div_q=resource gmp_div_q (resource a, resource b [, int round]) - Divide numbers
  668. gmp_div_qr=array gmp_div_qr (resource n, resource d [, int round]) - Divide numbers and get quotient and remainder
  669. gmp_div_r=resource gmp_div_r (resource n, resource d [, int round]) - Remainder of the division of numbers
  670. gmp_divexact=resource gmp_divexact (resource n, resource d) - Exact division of numbers
  671. gmp_fact=resource gmp_fact (int a) - Factorial
  672. gmp_gcd=resource gmp_gcd (resource a, resource b) - Calculate GCD
  673. gmp_gcdext=array gmp_gcdext (resource a, resource b) - Calculate GCD and multipliers
  674. gmp_hamdist=int gmp_hamdist (resource a, resource b) - Hamming distance
  675. gmp_init=resource gmp_init (mixed number) - Create GMP number
  676. gmp_intval=int gmp_intval (resource gmpnumber) - Convert GMP number to integer
  677. gmp_invert=resource gmp_invert (resource a, resource b) - Inverse by modulo
  678. gmp_jacobi=int gmp_jacobi (resource a, resource p) - Jacobi symbol
  679. gmp_legendre=int gmp_legendre (resource a, resource p) - Legendre symbol
  680. gmp_mod=resource gmp_mod (resource n, resource d) - Modulo operation
  681. gmp_mul=resource gmp_mul (resource a, resource b) - Multiply numbers
  682. gmp_neg=resource gmp_neg (resource a) - Negate number
  683. gmp_or=resource gmp_or (resource a, resource b) - Logical OR
  684. gmp_perfect_square=bool gmp_perfect_square (resource a) - Perfect square check
  685. gmp_popcount=int gmp_popcount (resource a) - Population count
  686. gmp_pow=resource gmp_pow (resource base, int exp) - Raise number into power
  687. gmp_powm=resource gmp_powm (resource base, resource exp, resource mod) - Raise number into power with modulo
  688. gmp_prob_prime=int gmp_prob_prime (resource a [, int reps]) - Check if number is "probably prime"
  689. gmp_random=resource gmp_random (int limiter) - Random number
  690. gmp_scan0=int gmp_scan0 (resource a, int start) - Scan for 0
  691. gmp_scan1=int gmp_scan1 (resource a, int start) - Scan for 1
  692. gmp_setbit=resource gmp_setbit (resource &a, int index [, bool set_clear]) - Set bit
  693. gmp_sign=int gmp_sign (resource a) - Sign of number
  694. gmp_sqrt=resource gmp_sqrt (resource a) - Square root
  695. gmp_sqrtrm=array gmp_sqrtrm (resource a) - Square root with remainder
  696. gmp_strval=string gmp_strval (resource gmpnumber [, int base]) - Convert GMP number to string
  697. gmp_sub=resource gmp_sub (resource a, resource b) - Subtract numbers
  698. gmp_xor=resource gmp_xor (resource a, resource b) - Logical XOR
  699. gmstrftime=string gmstrftime (string format [, int timestamp]) - Format a GMT/UTC time/date according to locale settings
  700. gregoriantojd=int gregoriantojd (int month, int day, int year) - Converts a Gregorian date to Julian Day Count
  701. gzclose=int gzclose (resource zp) - Close an open gz-file pointer
  702. gzcompress=string gzcompress (string data [, int level]) - Compress a string
  703. gzdeflate=string gzdeflate (string data [, int level]) - Deflate a string
  704. gzencode=string gzencode (string data [, int level [, int encoding_mode]]) - Create a gzip compressed string
  705. gzeof=int gzeof (resource zp) - Test for end-of-file on a gz-file pointer
  706. gzfile=array gzfile (string filename [, int use_include_path]) - Read entire gz-file into an array
  707. gzgetc=string gzgetc (resource zp) - Get character from gz-file pointer
  708. gzgets=string gzgets (resource zp, int length) - Get line from file pointer
  709. gzgetss=string gzgetss (resource zp, int length [, string allowable_tags]) - Get line from gz-file pointer and strip HTML tags
  710. gzinflate=string gzinflate (string data [, int length]) - Inflate a deflated string
  711. gzopen=resource gzopen (string filename, string mode [, int use_include_path]) - Open gz-file
  712. gzpassthru=int gzpassthru (resource zp) - Output all remaining data on a gz-file pointer
  713. gzputs=int gzputs (resource zp, string string [, int length]) - Binary-safe gz-file write
  714. gzread=string gzread (resource zp, int length) - Binary-safe gz-file read
  715. gzrewind=int gzrewind (resource zp) - Rewind the position of a gz-file pointer
  716. gzseek=int gzseek (resource zp, int offset) - Seek on a gz-file pointer
  717. gztell=int gztell (resource zp) - Tell gz-file pointer read/write position
  718. gzuncompress=string gzuncompress (string data [, int length]) - Uncompress a deflated string
  719. gzwrite=int gzwrite (resource zp, string string [, int length]) - Binary-safe gz-file write
  720. header=int header (string string [, bool replace [, int http_response_code]]) - Send a raw HTTP header
  721. headers_sent=bool headers_sent ([string &file [, int &line]]) - Checks if or where headers have been sent
  722. hebrev=string hebrev (string hebrew_text [, int max_chars_per_line]) - Convert logical Hebrew text to visual text
  723. hebrevc=string hebrevc (string hebrew_text [, int max_chars_per_line]) - Convert logical Hebrew text to visual text with newline conversion
  724. hexdec=int hexdec (string hex_string) - Hexadecimal to decimal
  725. highlight_file=mixed highlight_file (string filename [, bool return]) - Syntax highlighting of a file
  726. highlight_string=mixed highlight_string (string str [, bool return]) - Syntax highlighting of a string
  727. html_entity_decode=string html_entity_decode (string string [, int quote_style [, string charset]]) - Convert all HTML entities to their applicable characters
  728. htmlentities=string htmlentities (string string [, int quote_style [, string charset]]) - Convert all applicable characters to HTML entities
  729. htmlspecialchars=string htmlspecialchars (string string [, int quote_style [, string charset]]) - Convert special characters to HTML entities
  730. hw_array2objrec=string hw_array2objrec (array object_array) - convert attributes from object array to object record
  731. hw_changeobject=void hw_changeobject (int link, int objid, array attributes) - Changes attributes of an object (obsolete)
  732. hw_children=array hw_children (int connection, int objectID) - object ids of children
  733. hw_childrenobj=array hw_childrenobj (int connection, int objectID) - object records of children
  734. hw_close=int hw_close (int connection) - closes the Hyperwave connection
  735. hw_connect=int hw_connect (string host, int port, string username, string password) - opens a connection
  736. hw_connection_info=void hw_connection_info (int link) - Prints information about the connection to Hyperwave server
  737. hw_cp=int hw_cp (int connection, array object_id_array, int destination_id) - Copies objects
  738. hw_deleteobject=int hw_deleteobject (int connection, int object_to_delete) - deletes object
  739. hw_docbyanchor=int hw_docbyanchor (int connection, int anchorID) - object id object belonging to anchor
  740. hw_docbyanchorobj=string hw_docbyanchorobj (int connection, int anchorID) - object record object belonging to anchor
  741. hw_document_attributes=string hw_document_attributes (int hw_document) - object record of hw_document
  742. hw_document_bodytag=string hw_document_bodytag (int hw_document) - body tag of hw_document
  743. hw_document_content=string hw_document_content (int hw_document) - returns content of hw_document
  744. hw_document_setcontent=string hw_document_setcontent (int hw_document, string content) - sets/replaces content of hw_document
  745. hw_document_size=int hw_document_size (int hw_document) - size of hw_document
  746. hw_dummy=string hw_dummy (int link, int id, int msgid) - Hyperwave dummy function
  747. hw_edittext=int hw_edittext (int connection, int hw_document) - retrieve text document
  748. hw_error=int hw_error (int connection) - error number
  749. hw_errormsg=string hw_errormsg (int connection) - returns error message
  750. hw_free_document=int hw_free_document (int hw_document) - frees hw_document
  751. hw_getanchors=array hw_getanchors (int connection, int objectID) - object ids of anchors of document
  752. hw_getanchorsobj=array hw_getanchorsobj (int connection, int objectID) - object records of anchors of document
  753. hw_getandlock=string hw_getandlock (int connection, int objectID) - return bject record and lock object
  754. hw_getchildcoll=array hw_getchildcoll (int connection, int objectID) - object ids of child collections
  755. hw_getchildcollobj=array hw_getchildcollobj (int connection, int objectID) - object records of child collections
  756. hw_getchilddoccoll=array hw_getchilddoccoll (int connection, int objectID) - object ids of child documents of collection
  757. hw_getchilddoccollobj=array hw_getchilddoccollobj (int connection, int objectID) - object records of child documents of collection
  758. hw_getobject=array hw_getobject (int connection, mixed objectID, string query) - object record
  759. hw_getobjectbyquery=array hw_getobjectbyquery (int connection, string query, int max_hits) - search object
  760. hw_getobjectbyquerycoll=array hw_getobjectbyquerycoll (int connection, int objectID, string query, int max_hits) - search object in collection
  761. hw_getobjectbyquerycollobj=array hw_getobjectbyquerycollobj (int connection, int objectID, string query, int max_hits) - search object in collection
  762. hw_getobjectbyqueryobj=array hw_getobjectbyqueryobj (int connection, string query, int max_hits) - search object
  763. hw_getparents=array hw_getparents (int connection, int objectID) - object ids of parents
  764. hw_getparentsobj=array hw_getparentsobj (int connection, int objectID) - object records of parents
  765. hw_getrellink=string hw_getrellink (int link, int rootid, int sourceid, int destid) - Get link from source to dest relative to rootid
  766. hw_getremote=int hw_getremote (int connection, int objectID) - Gets a remote document
  767. hw_getremotechildren=int hw_getremotechildren (int connection, string object_record) - Gets children of remote document
  768. hw_getsrcbydestobj=array hw_getsrcbydestobj (int connection, int objectID) - Returns anchors pointing at object
  769. hw_gettext=int hw_gettext (int connection, int objectID [, mixed rootID/prefix]) - retrieve text document
  770. hw_getusername=string hw_getusername (int connection) - name of currently logged in user
  771. hw_identify=int hw_identify (string username, string password) - identifies as user
  772. hw_incollections=array hw_incollections (int connection, array object_id_array, array collection_id_array, int return_collections) - check if object ids in collections
  773. hw_info=string hw_info (int connection) - info about connection
  774. hw_inscoll=int hw_inscoll (int connection, int objectID, array object_array) - insert collection
  775. hw_insdoc=int hw_insdoc (int connection, int parentID, string object_record, string text) - insert document
  776. hw_insertanchors=string hw_insertanchors (int hwdoc, array anchorecs, array dest [, array urlprefixes]) - Inserts only anchors into text
  777. hw_insertdocument=int hw_insertdocument (int connection, int parent_id, int hw_document) - upload any document
  778. hw_insertobject=int hw_insertobject (int connection, string object_rec, string parameter) - inserts an object record
  779. hw_mapid=int hw_mapid (int connection, int server_id, int object_id) - Maps global id on virtual local id
  780. hw_modifyobject=int hw_modifyobject (int connection, int object_to_change, array remove, array add, int mode) - modifies object record
  781. hw_mv=int hw_mv (int connection, array object_id_array, int source_id, int destination_id) - Moves objects
  782. hw_new_document=int hw_new_document (string object_record, string document_data, int document_size) - create new document
  783. hw_objrec2array=array hw_objrec2array (string object_record [, array format]) - Convert attributes from object record to object array
  784. hw_output_document=int hw_output_document (int hw_document) - prints hw_document
  785. hw_pconnect=int hw_pconnect (string host, int port, string username, string password) - make a persistent database connection
  786. hw_pipedocument=int hw_pipedocument (int connection, int objectID) - retrieve any document
  787. hw_root=int hw_root () - root object id
  788. hw_setlinkroot=void hw_setlinkroot (int link, int rootid) - Set the id to which links are calculated
  789. hw_stat=string hw_stat (int link) - Returns status string
  790. hw_unlock=int hw_unlock (int connection, int objectID) - unlock object
  791. hw_who=int hw_who (int connection) - List of currently logged in users
  792. hwapi_hgcsp=object hwapi_hgcsp (string hostname [, int port]) - Returns object of class hw_api
  793. hypot=float hypot (float num1, float num2) - Returns sqrt(num1*num1 + num2*num2)
  794. ibase_add_user=bool ibase_add_user (string server, string dba_user_name, string dba_user_password, string user_name, string password [, string first_name [, string middle_name [, string last_name]]]) - Add a user to a security database (only for IB6 or later)
  795. ibase_blob_add=bool ibase_blob_add (int blob_id, string data) - Add data into a newly created blob
  796. ibase_blob_cancel=bool ibase_blob_cancel (int blob_id) - Cancel creating blob
  797. ibase_blob_close=bool ibase_blob_close (int blob_id) - Close blob
  798. ibase_blob_create=int ibase_blob_create ([resource link_identifier]) - Creates a new blob for adding data
  799. ibase_blob_echo=bool ibase_blob_echo (string blob_id_str) - Output blob contents to browser
  800. ibase_blob_get=string ibase_blob_get (int blob_id, int len) - Get len bytes data from open blob
  801. ibase_blob_import=string ibase_blob_import ([resource link_identifier, int file_id]) - Create blob, copy file in it, and close it
  802. ibase_blob_info=object ibase_blob_info (string blob_id_str) - Return blob length and other useful info
  803. ibase_blob_open=int ibase_blob_open (string blob_id) - Open blob for retrieving data parts
  804. ibase_close=bool ibase_close ([resource connection_id]) - Close a connection to an InterBase database
  805. ibase_commit=bool ibase_commit ([resource link_identifier, int trans_number]) - Commit a transaction
  806. ibase_connect=resource ibase_connect (string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]]) - Open a connection to an InterBase database
  807. ibase_delete_user=bool ibase_delete_user (string server, string dba_user_name, string dba_user_password, string user_name) - Delete a user from a security database (only for IB6 or later)
  808. ibase_errmsg=string ibase_errmsg (void) - Returns error messages
  809. ibase_execute=resource ibase_execute (resource query [, int bind_args]) - Execute a previously prepared query
  810. ibase_fetch_assoc=array ibase_fetch_assoc (resource result [, int blob_flag]) - Fetch a result row from a query as an associative array
  811. ibase_fetch_object=object ibase_fetch_object (resource result_id [, int blob_flag]) - Get an object from a InterBase database
  812. ibase_fetch_row=array ibase_fetch_row (resource result_identifier [, int blob_flag]) - Fetch a row from an InterBase database
  813. ibase_field_info=array ibase_field_info (resource result, int field_number) - Get information about a field
  814. ibase_free_query=bool ibase_free_query (resource query) - Free memory allocated by a prepared query
  815. ibase_free_result=bool ibase_free_result (resource result_identifier) - Free a result set
  816. ibase_modify_user=bool ibase_modify_user (string server, string dba_user_name, string dba_user_password, string user_name, string password [, string first_name [, string middle_name [, string last_name]]]) - Modify a user to a security database (only for IB6 or later)
  817. ibase_num_fields=int ibase_num_fields (resource result_id) - Get the number of fields in a result set
  818. ibase_pconnect=resource ibase_pconnect (string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]]) - Creates an persistent connection to an InterBase database
  819. ibase_prepare=resource ibase_prepare ([resource link_identifier, string query]) - Prepare a query for later binding of parameter placeholders and execution
  820. ibase_query=resource ibase_query ([resource link_identifier, string query [, int bind_args]]) - Execute a query on an InterBase database
  821. ibase_rollback=bool ibase_rollback ([resource link_identifier, int trans_number]) - Rolls back a transaction
  822. ibase_timefmt=int ibase_timefmt (string format [, int columntype]) - Sets the format of timestamp, date and time type columns returned from queries
  823. ibase_trans=resource ibase_trans ([int trans_args [, resource link_identifier]]) - Begin a transaction
  824. iconv=string iconv (string in_charset, string out_charset, string str) - Convert string to requested character encoding
  825. iconv_get_encoding=array iconv_get_encoding ([string type]) - Get current setting for character encoding conversion
  826. iconv_set_encoding=bool iconv_set_encoding (string type, string charset) - Set current setting for character encoding conversion
  827. ifx_affected_rows=int ifx_affected_rows (int result_id) - Get number of rows affected by a query
  828. ifx_blobinfile_mode=void ifx_blobinfile_mode (int mode) - Set the default blob mode for all select queries
  829. ifx_byteasvarchar=void ifx_byteasvarchar (int mode) - Set the default byte mode
  830. ifx_close=int ifx_close ([int link_identifier]) - Close Informix connection
  831. ifx_connect=int ifx_connect ([string database [, string userid [, string password]]]) - Open Informix server connection
  832. ifx_copy_blob=int ifx_copy_blob (int bid) - Duplicates the given blob object
  833. ifx_create_blob=int ifx_create_blob (int type, int mode, string param) - Creates an blob object
  834. ifx_create_char=int ifx_create_char (string param) - Creates an char object
  835. ifx_do=int ifx_do (int result_id) - Execute a previously prepared SQL-statement
  836. ifx_error=string ifx_error (void) - Returns error code of last Informix call
  837. ifx_errormsg=string ifx_errormsg ([int errorcode]) - Returns error message of last Informix call
  838. ifx_fetch_row=array ifx_fetch_row (int result_id [, mixed position]) - Get row as enumerated array
  839. ifx_fieldproperties=array ifx_fieldproperties (int result_id) - List of SQL fieldproperties
  840. ifx_fieldtypes=array ifx_fieldtypes (int result_id) - List of Informix SQL fields
  841. ifx_free_blob=int ifx_free_blob (int bid) - Deletes the blob object
  842. ifx_free_char=int ifx_free_char (int bid) - Deletes the char object
  843. ifx_free_result=int ifx_free_result (int result_id) - Releases resources for the query
  844. ifx_get_blob=int ifx_get_blob (int bid) - Return the content of a blob object
  845. ifx_get_char=int ifx_get_char (int bid) - Return the content of the char object
  846. ifx_getsqlca=array ifx_getsqlca (int result_id) - Get the contents of sqlca.sqlerrd[0..5] after a query
  847. ifx_htmltbl_result=int ifx_htmltbl_result (int result_id [, string html_table_options]) - Formats all rows of a query into a HTML table
  848. ifx_nullformat=void ifx_nullformat (int mode) - Sets the default return value on a fetch row
  849. ifx_num_fields=int ifx_num_fields (int result_id) - Returns the number of columns in the query
  850. ifx_num_rows=int ifx_num_rows (int result_id) - Count the rows already fetched from a query
  851. ifx_pconnect=int ifx_pconnect ([string database [, string userid [, string password]]]) - Open persistent Informix connection
  852. ifx_prepare=int ifx_prepare (string query, int conn_id [, int cursor_def, mixed blobidarray]) - Prepare an SQL-statement for execution
  853. ifx_query=int ifx_query (string query, int link_identifier [, int cursor_type [, mixed blobidarray]]) - Send Informix query
  854. ifx_textasvarchar=void ifx_textasvarchar (int mode) - Set the default text mode
  855. ifx_update_blob=bool ifx_update_blob (int bid, string content) - Updates the content of the blob object
  856. ifx_update_char=int ifx_update_char (int bid, string content) - Updates the content of the char object
  857. ifxus_close_slob=int ifxus_close_slob (int bid) - Deletes the slob object
  858. ifxus_create_slob=int ifxus_create_slob (int mode) - Creates an slob object and opens it
  859. ifxus_free_slob=int ifxus_free_slob (int bid) - Deletes the slob object
  860. ifxus_open_slob=int ifxus_open_slob (long bid, int mode) - Opens an slob object
  861. ifxus_read_slob=int ifxus_read_slob (long bid, long nbytes) - Reads nbytes of the slob object
  862. ifxus_seek_slob=int ifxus_seek_slob (long bid, int mode, long offset) - Sets the current file or seek position
  863. ifxus_tell_slob=int ifxus_tell_slob (long bid) - Returns the current file or seek position
  864. ifxus_write_slob=int ifxus_write_slob (long bid, string content) - Writes a string into the slob object
  865. ignore_user_abort=int ignore_user_abort ([bool setting]) - Set whether a client disconnect should abort script execution
  866. image2wbmp=int image2wbmp (resource image [, string filename [, int threshold]]) - Output image to browser or file
  867. image_type_to_mime_type=string image_type_to_mime_type (int imagetype) - Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype
  868. imagealphablending=int imagealphablending (resource image, bool blendmode) - Set the blending mode for an image
  869. imageantialias=bool imageantialias (int im, bool on) - Should antialias functions be used or not
  870. imagearc=int imagearc (resource image, int cx, int cy, int w, int h, int s, int e, int color) - Draw a partial ellipse
  871. imagechar=int imagechar (resource image, int font, int x, int y, string c, int color) - Draw a character horizontally
  872. imagecharup=int imagecharup (resource image, int font, int x, int y, string c, int color) - Draw a character vertically
  873. imagecolorallocate=int imagecolorallocate (resource image, int red, int green, int blue) - Allocate a color for an image
  874. imagecolorallocatealpha=int imagecolorallocatealpha (resource image, int red, int green, int blue, int alpha) - Allocate a color for an image
  875. imagecolorat=int imagecolorat (resource image, int x, int y) - Get the index of the color of a pixel
  876. imagecolorclosest=int imagecolorclosest (resource image, int red, int green, int blue) - Get the index of the closest color to the specified color
  877. imagecolorclosestalpha=int imagecolorclosestalpha (resource image, int red, int green, int blue, int alpha) - Get the index of the closest color to the specified color + alpha
  878. imagecolorclosesthwb=int imagecolorclosesthwb (resource image, int red, int green, int blue) - Get the index of the color which has the hue, white and blackness nearest to the given color
  879. imagecolordeallocate=int imagecolordeallocate (resource image, int color) - De-allocate a color for an image
  880. imagecolorexact=int imagecolorexact (resource image, int red, int green, int blue) - Get the index of the specified color
  881. imagecolorexactalpha=int imagecolorexactalpha (resource image, int red, int green, int blue, int alpha) - Get the index of the specified color + alpha
  882. imagecolormatch=bool imagecolormatch (resource image1, resource image2) - Makes the colors of the palette version of an image more closely match the true color version
  883. imagecolorresolve=int imagecolorresolve (resource image, int red, int green, int blue) - Get the index of the specified color or its closest possible alternative
  884. imagecolorresolvealpha=int imagecolorresolvealpha (resource image, int red, int green, int blue, int alpha) - Get the index of the specified color + alpha or its closest possible alternative
  885. imagecolorset=bool imagecolorset (resource image, int index, int red, int green, int blue) - Set the color for the specified palette index
  886. imagecolorsforindex=array imagecolorsforindex (resource image, int index) - Get the colors for an index
  887. imagecolorstotal=int imagecolorstotal (resource image) - Find out the number of colors in an image's palette
  888. imagecolortransparent=int imagecolortransparent (resource image [, int color]) - Define a color as transparent
  889. imagecopy=int imagecopy (resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h) - Copy part of an image
  890. imagecopymerge=int imagecopymerge (resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct) - Copy and merge part of an image
  891. imagecopymergegray=int imagecopymergegray (resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct) - Copy and merge part of an image with gray scale
  892. imagecopyresampled=int imagecopyresampled (resource dst_im, resource src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) - Copy and resize part of an image with resampling
  893. imagecopyresized=int imagecopyresized (resource dst_im, resource src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) - Copy and resize part of an image
  894. imagecreate=resource imagecreate (int x_size, int y_size) - Create a new palette based image
  895. imagecreatefromgd=resource imagecreatefromgd (string filename) - Create a new image from GD file or URL
  896. imagecreatefromgd2=resource imagecreatefromgd2 (string filename) - Create a new image from GD2 file or URL
  897. imagecreatefromgd2part=resource imagecreatefromgd2part (string filename, int srcX, int srcY, int width, int height) - Create a new image from a given part of GD2 file or URL
  898. imagecreatefromgif=resource imagecreatefromgif (string filename) - Create a new image from file or URL
  899. imagecreatefromjpeg=resource imagecreatefromjpeg (string filename) - Create a new image from file or URL
  900. imagecreatefrompng=resource imagecreatefrompng (string filename) - Create a new image from file or URL
  901. imagecreatefromstring=resource imagecreatefromstring (string image) - Create a new image from the image stream in the string
  902. imagecreatefromwbmp=resource imagecreatefromwbmp (string filename) - Create a new image from file or URL
  903. imagecreatefromxbm=resource imagecreatefromxbm (string filename) - Create a new image from file or URL
  904. imagecreatefromxpm=resource imagecreatefromxpm (string filename) - Create a new image from file or URL
  905. imagecreatetruecolor=resource imagecreatetruecolor (int x_size, int y_size) - Create a new true color image
  906. imagedashedline=int imagedashedline (resource image, int x1, int y1, int x2, int y2, int color) - Draw a dashed line
  907. imagedestroy=int imagedestroy (resource image) - Destroy an image
  908. imageellipse=int imageellipse (resource image, int cx, int cy, int w, int h, int color) - Draw an ellipse
  909. imagefill=int imagefill (resource image, int x, int y, int color) - Flood fill
  910. imagefilledarc=int imagefilledarc (resource image, int cx, int cy, int w, int h, int s, int e, int color, int style) - Draw a partial ellipse and fill it
  911. imagefilledellipse=int imagefilledellipse (resource image, int cx, int cy, int w, int h, int color) - Draw a filled ellipse
  912. imagefilledpolygon=int imagefilledpolygon (resource image, array points, int num_points, int color) - Draw a filled polygon
  913. imagefilledrectangle=int imagefilledrectangle (resource image, int x1, int y1, int x2, int y2, int color) - Draw a filled rectangle
  914. imagefilltoborder=int imagefilltoborder (resource image, int x, int y, int border, int color) - Flood fill to specific color
  915. imagefontheight=int imagefontheight (int font) - Get font height
  916. imagefontwidth=int imagefontwidth (int font) - Get font width
  917. imageftbbox=array imageftbbox (int size, int angle, string font_file, string text [, array extrainfo]) - Give the bounding box of a text using fonts via freetype2
  918. imagefttext=array imagefttext (resource image, int size, int angle, int x, int y, int col, string font_file, string text [, array extrainfo]) - Write text to the image using fonts using FreeType 2
  919. imagegammacorrect=int imagegammacorrect (resource image, float inputgamma, float outputgamma) - Apply a gamma correction to a GD image
  920. imagegd=int imagegd (resource image [, string filename]) - Output GD image to browser or file
  921. imagegd2=int imagegd2 (resource image [, string filename [, int chunk_size [, int type]]]) - Output GD2 image
  922. imagegif=int imagegif (resource image [, string filename]) - Output image to browser or file
  923. imageinterlace=int imageinterlace (resource image [, int interlace]) - Enable or disable interlace
  924. imageistruecolor=bool imageistruecolor (resource image) - Finds whether an image is a truecolor image.
  925. imagejpeg=int imagejpeg (resource image [, string filename [, int quality]]) - Output image to browser or file
  926. imageline=int imageline (resource image, int x1, int y1, int x2, int y2, int color) - Draw a line
  927. imageloadfont=int imageloadfont (string file) - Load a new font
  928. imagepalettecopy=int imagepalettecopy (resource destination, resource source) - Copy the palette from one image to another
  929. imagepng=int imagepng (resource image [, string filename]) - Output a PNG image to either the browser or a file
  930. imagepolygon=int imagepolygon (resource image, array points, int num_points, int color) - Draw a polygon
  931. imagepsbbox=array imagepsbbox (string text, int font, int size [, int space [, int tightness [, float angle]]]) - Give the bounding box of a text rectangle using PostScript Type1 fonts
  932. imagepscopyfont=int imagepscopyfont (int fontindex) - Make a copy of an already loaded font for further modification
  933. imagepsencodefont=int imagepsencodefont (int font_index, string encodingfile) - Change the character encoding vector of a font
  934. imagepsextendfont=bool imagepsextendfont (int font_index, float extend) - Extend or condense a font
  935. imagepsfreefont=void imagepsfreefont (int fontindex) - Free memory used by a PostScript Type 1 font
  936. imagepsloadfont=int imagepsloadfont (string filename) - Load a PostScript Type 1 font from file
  937. imagepsslantfont=bool imagepsslantfont (int font_index, float slant) - Slant a font
  938. imagepstext=array imagepstext (resource image, string text, int font, int size, int foreground, int background, int x, int y [, int space [, int tightness [, float angle [, int antialias_steps]]]]) - To draw a text string over an image using PostScript Type1 fonts
  939. imagerectangle=int imagerectangle (resource image, int x1, int y1, int x2, int y2, int col) - Draw a rectangle
  940. imagerotate=resource imagerotate (resource src_im, float angle, int bgd_color) - Rotate an image with a given angle
  941. imagesavealpha=bool imagesavealpha (resource image, bool saveflag) - Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images.
  942. imagesetbrush=int imagesetbrush (resource image, resource brush) - Set the brush image for line drawing
  943. imagesetpixel=int imagesetpixel (resource image, int x, int y, int color) - Set a single pixel
  944. imagesetstyle=int imagesetstyle (resource image, array style) - Set the style for line drawing
  945. imagesetthickness=void imagesetthickness (resource image, int thickness) - Set the thickness for line drawing
  946. imagesettile=int imagesettile (resource image, resource tile) - Set the tile image for filling
  947. imagestring=int imagestring (resource image, int font, int x, int y, string s, int col) - Draw a string horizontally
  948. imagestringup=int imagestringup (resource image, int font, int x, int y, string s, int col) - Draw a string vertically
  949. imagesx=int imagesx (resource image) - Get image width
  950. imagesy=int imagesy (resource image) - Get image height
  951. imagetruecolortopalette=void imagetruecolortopalette (resource image, bool dither, int ncolors) - Convert a true color image to a palette image
  952. imagettfbbox=array imagettfbbox (int size, int angle, string fontfile, string text) - Give the bounding box of a text using TrueType fonts
  953. imagettftext=array imagettftext (resource image, int size, int angle, int x, int y, int color, string fontfile, string text) - Write text to the image using TrueType fonts
  954. imagetypes=int imagetypes (void) - Return the image types supported by this PHP build
  955. imagewbmp=int imagewbmp (resource image [, string filename [, int foreground]]) - Output image to browser or file
  956. imap_8bit=string imap_8bit (string string) - Convert an 8bit string to a quoted-printable string
  957. imap_alerts=array imap_alerts (void) - This function returns all IMAP alert messages (if any) that have occurred during this page request or since the alert stack was reset
  958. imap_append=bool imap_append (resource imap_stream, string mbox, string message [, string options]) - Append a string message to a specified mailbox
  959. imap_base64=string imap_base64 (string text) - Decode BASE64 encoded text
  960. imap_binary=string imap_binary (string string) - Convert an 8bit string to a base64 string
  961. imap_body=string imap_body (resource imap_stream, int msg_number [, int options]) - Read the message body
  962. imap_bodystruct=object imap_bodystruct (resource stream_id, int msg_no, int section) - Read the structure of a specified body section of a specific message
  963. imap_check=object imap_check (resource imap_stream) - Check current mailbox
  964. imap_clearflag_full=bool imap_clearflag_full (resource stream, string sequence, string flag, string options) - Clears flags on messages
  965. imap_close=bool imap_close (resource imap_stream [, int flag]) - Close an IMAP stream
  966. imap_createmailbox=bool imap_createmailbox (resource imap_stream, string mbox) - Create a new mailbox
  967. imap_delete=bool imap_delete (int imap_stream, int msg_number [, int options]) - Mark a messge for deletion from current mailbox
  968. imap_deletemailbox=bool imap_deletemailbox (resource imap_stream, string mbox) - Delete a mailbox
  969. imap_errors=array imap_errors (void) - This function returns all of the IMAP errors (if any) that have occurred during this page request or since the error stack was reset.
  970. imap_expunge=bool imap_expunge (resource imap_stream) - Delete all messages marked for deletion
  971. imap_fetch_overview=array imap_fetch_overview (resource imap_stream, string sequence [, int options]) - Read an overview of the information in the headers of the given message
  972. imap_fetchbody=string imap_fetchbody (resource imap_stream, int msg_number, string part_number [, flags options]) - Fetch a particular section of the body of the message
  973. imap_fetchheader=string imap_fetchheader (resource imap_stream, int msgno, int options) - Returns header for a message
  974. imap_fetchstructure=object imap_fetchstructure (resource imap_stream, int msg_number [, int options]) - Read the structure of a particular message
  975. imap_get_quota=array imap_get_quota (resource imap_stream, string quota_root) - Retrieve the quota level settings, and usage statics per mailbox
  976. imap_get_quotaroot=array imap_get_quotaroot (resource imap_stream, string quota_root) - Retrieve the quota settings per user
  977. imap_getmailboxes=array imap_getmailboxes (resource imap_stream, string ref, string pattern) - Read the list of mailboxes, returning detailed information on each one
  978. imap_getsubscribed=array imap_getsubscribed (resource imap_stream, string ref, string pattern) - List all the subscribed mailboxes
  979. imap_header=object imap_header (resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost]]]) - Read the header of the message
  980. imap_headerinfo=object imap_headerinfo (resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost]]]) - Read the header of the message
  981. imap_headers=array imap_headers (resource imap_stream) - Returns headers for all messages in a mailbox
  982. imap_last_error=string imap_last_error (void) - This function returns the last IMAP error (if any) that occurred during this page request
  983. imap_list=array imap_list (resource imap_stream, string ref, string pattern) - Read the list of mailboxes
  984. imap_listmailbox=array imap_listmailbox (resource imap_stream, string ref, string pattern) - Read the list of mailboxes
  985. imap_listscan=array imap_listscan (resource imap_stream, string ref, string pattern, string content) - Read the list of mailboxes, takes a string to search for in the text of the mailbox
  986. imap_listsubscribed=array imap_listsubscribed (resource imap_stream, string ref, string pattern) - List all the subscribed mailboxes
  987. imap_lsub=array imap_lsub (resource imap_stream, string ref, string pattern) - List all the subscribed mailboxes
  988. imap_mail=string imap_mail (string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]]) - Send an email message
  989. imap_mail_compose=string imap_mail_compose (array envelope, array body) - Create a MIME message based on given envelope and body sections
  990. imap_mail_copy=bool imap_mail_copy (resource imap_stream, string msglist, string mbox [, int options]) - Copy specified messages to a mailbox
  991. imap_mail_move=bool imap_mail_move (resource imap_stream, string msglist, string mbox [, int options]) - Move specified messages to a mailbox
  992. imap_mailboxmsginfo=object imap_mailboxmsginfo (resource imap_stream) - Get information about the current mailbox
  993. imap_mime_header_decode=array imap_mime_header_decode (string text) - Decode MIME header elements
  994. imap_msgno=int imap_msgno (resource imap_stream, int uid) - This function returns the message sequence number for the given UID
  995. imap_num_msg=int imap_num_msg (resource imap_stream) - Gives the number of messages in the current mailbox
  996. imap_num_recent=int imap_num_recent (resource imap_stream) - Gives the number of recent messages in current mailbox
  997. imap_open=resource imap_open (string mailbox, string username, string password [, int options]) - Open an IMAP stream to a mailbox
  998. imap_ping=bool imap_ping (resource imap_stream) - Check if the IMAP stream is still active
  999. imap_qprint=string imap_qprint (string string) - Convert a quoted-printable string to an 8 bit string
  1000. imap_renamemailbox=bool imap_renamemailbox (resource imap_stream, string old_mbox, string new_mbox) - Rename an old mailbox to new mailbox
  1001. imap_reopen=bool imap_reopen (resource imap_stream, string mailbox [, string options]) - Reopen IMAP stream to new mailbox
  1002. imap_rfc822_parse_adrlist=array imap_rfc822_parse_adrlist (string address, string default_host) - Parses an address string
  1003. imap_rfc822_parse_headers=object imap_rfc822_parse_headers (string headers [, string defaulthost]) - Parse mail headers from a string
  1004. imap_rfc822_write_address=string imap_rfc822_write_address (string mailbox, string host, string personal) - Returns a properly formatted email address given the mailbox, host, and personal info.
  1005. imap_scanmailbox=array imap_listscan (resource imap_stream, string ref, string pattern, string content) - Read the list of mailboxes, takes a string to search for in the text of the mailbox
  1006. imap_search=array imap_search (resource imap_stream, string criteria, int options) - This function returns an array of messages matching the given search criteria
  1007. imap_set_quota=bool imap_set_quota (resource imap_stream, string quota_root, int quota_limit) - Sets a quota for a given mailbox
  1008. imap_setacl=bool imap_setacl (resource stream_id, string mailbox, string id, string rights) - Sets the ACL for a giving mailbox
  1009. imap_setflag_full=bool imap_setflag_full (resource stream, string sequence, string flag, string options) - Sets flags on messages
  1010. imap_sort=array imap_sort (resource stream, int criteria, int reverse [, int options [, string search_criteria]]) - Sort an array of message headers
  1011. imap_status=object imap_status (resource imap_stream, string mailbox, int options) - This function returns status information on a mailbox other than the current one
  1012. imap_subscribe=bool imap_subscribe (resource imap_stream, string mbox) - Subscribe to a mailbox
  1013. imap_thread=array imap_thread (resource stream_id [, int options]) - Return threaded by REFERENCES tree
  1014. imap_uid=int imap_uid (resource imap_stream, int msgno) - This function returns the UID for the given message sequence number
  1015. imap_undelete=bool imap_undelete (resource imap_stream, int msg_number) - Unmark the message which is marked deleted
  1016. imap_unsubscribe=bool imap_unsubscribe (string imap_stream, string mbox) - Unsubscribe from a mailbox
  1017. imap_utf7_decode=string imap_utf7_decode (string text) - Decodes a modified UTF-7 encoded string.
  1018. imap_utf7_encode=string imap_utf7_encode (string data) - Converts ISO-8859-1 string to modified UTF-7 text.
  1019. imap_utf8=string imap_utf8 (string mime_encoded_text) - Converts MIME-encoded text to UTF-8
  1020. implode=string implode (string glue, array pieces) - Join array elements with a string
  1021. import_request_variables=bool import_request_variables (string types [, string prefix]) - Import GET/POST/Cookie variables into the global scope
  1022. in_array=bool in_array (mixed needle, array haystack [, bool strict]) - Checks if a value exists in an array
  1023. ingres_autocommit=bool ingres_autocommit ([resource link]) - Switch autocommit on or off
  1024. ingres_close=bool ingres_close ([resource link]) - Close an Ingres II database connection
  1025. ingres_commit=bool ingres_commit ([resource link]) - Commit a transaction
  1026. ingres_connect=resource ingres_connect ([string database [, string username [, string password]]]) - Open a connection to an Ingres II database
  1027. ingres_fetch_array=array ingres_fetch_array ([int result_type [, resource link]]) - Fetch a row of result into an array
  1028. ingres_fetch_object=object ingres_fetch_object ([int result_type [, resource link]]) - Fetch a row of result into an object.
  1029. ingres_fetch_row=array ingres_fetch_row ([resource link]) - Fetch a row of result into an enumerated array
  1030. ingres_field_length=int ingres_field_length (int index [, resource link]) - Get the length of a field
  1031. ingres_field_name=string ingres_field_name (int index [, resource link]) - Get the name of a field in a query result.
  1032. ingres_field_nullable=bool ingres_field_nullable (int index [, resource link]) - Test if a field is nullable
  1033. ingres_field_precision=int ingres_field_precision (int index [, resource link]) - Get the precision of a field
  1034. ingres_field_scale=int ingres_field_scale (int index [, resource link]) - Get the scale of a field
  1035. ingres_field_type=string ingres_field_type (int index [, resource link]) - Get the type of a field in a query result
  1036. ingres_num_fields=int ingres_num_fields ([resource link]) - Get the number of fields returned by the last query
  1037. ingres_num_rows=int ingres_num_rows ([resource link]) - Get the number of rows affected or returned by the last query
  1038. ingres_pconnect=resource ingres_pconnect ([string database [, string username [, string password]]]) - Open a persistent connection to an Ingres II database
  1039. ingres_query=bool ingres_query (string query [, resource link]) - Send a SQL query to Ingres II
  1040. ingres_rollback=bool ingres_rollback ([resource link]) - Roll back a transaction
  1041. ini_alter=string ini_alter (string varname, string newvalue) - Sets the value of a configuration option
  1042. ini_get=string ini_get (string varname) - Gets the value of a configuration option
  1043. ini_get_all=array ini_get_all ([string extension]) - Gets all configuration options
  1044. ini_restore=string ini_restore (string varname) - Restores the value of a configuration option
  1045. ini_set=string ini_set (string varname, string newvalue) - Sets the value of a configuration option
  1046. intval=int intval (mixed var [, int base]) - Get integer value of a variable
  1047. ip2long=int ip2long (string ip_address) - Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address.
  1048. iptcembed=array iptcembed (string iptcdata, string jpeg_file_name [, int spool]) - Embed binary IPTC data into a JPEG image
  1049. iptcparse=array iptcparse (string iptcblock) - Parse a binary IPTC
  1050. ircg_channel_mode=bool ircg_channel_mode (resource connection, string channel, string mode_spec, string nick) - Set channel mode flags for user
  1051. ircg_disconnect=bool ircg_disconnect (resource connection, string reason) - Close connection to server
  1052. ircg_fetch_error_msg=array ircg_fetch_error_msg (resource connection) - Returns the error from previous IRCG operation
  1053. ircg_get_username=string ircg_get_username (resource connection) - Get username for connection
  1054. ircg_html_encode=bool ircg_html_encode (string html_string) - Encodes HTML preserving output
  1055. ircg_ignore_add=bool ircg_ignore_add (resource connection, string nick) - Add a user to your ignore list on a server
  1056. ircg_ignore_del=bool ircg_ignore_del (resource connection, string nick) - Remove a user from your ignore list on a server
  1057. ircg_is_conn_alive=bool ircg_is_conn_alive (resource connection) - Check connection status
  1058. ircg_join=bool ircg_join (resource connection, string channel [, string key]) - Join a channel on a connected server
  1059. ircg_kick=bool ircg_kick (resource connection, string channel, string nick, string reason) - Kick a user out of a channel on server
  1060. ircg_lookup_format_messages=bool ircg_lookup_format_messages (string name) - Check for the existence of a format message set
  1061. ircg_msg=bool ircg_msg (resource connection, string recipient, string message [, boolean suppress]) - Send message to channel or user on server
  1062. ircg_nick=bool ircg_nick (resource connection, string nick) - Change nickname on server
  1063. ircg_nickname_escape=string ircg_nickname_escape (string nick) - Encode special characters in nickname to be IRC-compliant
  1064. ircg_nickname_unescape=string ircg_nickname_unescape (string nick) - Decodes encoded nickname
  1065. ircg_notice=bool ircg_notice (resource connection, string , string message) - Send a notice to a user on server
  1066. ircg_part=bool ircg_part (resource connection, string channel) - Leave a channel on server
  1067. ircg_pconnect=resource ircg_pconnect (string username [, string server_ip [, int server_port [, string msg_format [, array ctcp_messages [, array user_settings]]]]]) - Connect to an IRC server
  1068. ircg_register_format_messages=bool ircg_register_format_messages (string name, array messages) - Register a format message set
  1069. ircg_set_current=bool ircg_set_current (resource connection) - Set current connection for output
  1070. ircg_set_file=bool ircg_set_file (resource connection, string path) - Set logfile for connection
  1071. ircg_set_on_die=bool ircg_set_on_die (resource connection, string host, int port, string data) - Set action to be executed when connection dies
  1072. ircg_topic=bool ircg_topic (resource connection, string channel, string new_topic) - Set topic for channel on server
  1073. ircg_whois=bool ircg_whois (resource connection, string nick) - Query server for user information
  1074. is_a=bool is_a (object object, string class_name) - Returns TRUE if the object is of this class or has this class as one of its parents
  1075. is_array=bool is_array (mixed var) - Finds whether a variable is an array
  1076. is_bool=bool is_bool (mixed var) - Finds out whether a variable is a boolean
  1077. is_callable=bool is_callable (mixed var [, bool syntax_only [, string callable_name]]) - Verify that the contents of a variable can be called as a function
  1078. is_dir=bool is_dir (string filename) - Tells whether the filename is a directory
  1079. is_double=bool is_double (mixed var) - Finds whether a variable is a float
  1080. is_executable=bool is_executable (string filename) - Tells whether the filename is executable
  1081. is_file=bool is_file (string filename) - Tells whether the filename is a regular file
  1082. is_finite=bool is_finite (float val) - Finds whether a value is a legal finite number
  1083. is_float=bool is_float (mixed var) - Finds whether a variable is a float
  1084. is_infinite=bool is_infinite (float val) - Finds whether a value is infinite
  1085. is_int=bool is_int (mixed var) - Find whether a variable is an integer
  1086. is_integer=bool is_int (mixed var) - Find whether a variable is an integer
  1087. is_link=bool is_link (string filename) - Tells whether the filename is a symbolic link
  1088. is_long=bool is_long (mixed var) - Find whether a variable is an integer
  1089. is_nan=bool is_nan (float val) - Finds whether a value is not a number
  1090. is_null=bool is_null (mixed var) - Finds whether a variable is
  1091. is_numeric=bool is_numeric (mixed var) - Finds whether a variable is a number or a numeric string
  1092. is_object=bool is_object (mixed var) - Finds whether a variable is an object
  1093. is_readable=bool is_readable (string filename) - Tells whether the filename is readable
  1094. is_real=bool is_float (mixed var) - Finds whether a variable is a float
  1095. is_resource=bool is_resource (mixed var) - Finds whether a variable is a resource
  1096. is_scalar=bool is_scalar (mixed var) - Finds whether a variable is a scalar
  1097. is_string=bool is_string (mixed var) - Finds whether a variable is a string
  1098. is_subclass_of=bool is_subclass_of (object object, string class_name) - Returns TRUE if the object has this class as one of its parents
  1099. is_uploaded_file=bool is_uploaded_file (string filename) - Tells whether the file was uploaded via HTTP POST
  1100. is_writable=bool is_writable (string filename) - Tells whether the filename is writable
  1101. is_writeable=bool is_writeable (string filename) - Tells whether the filename is writable
  1102. isset=bool isset (mixed var [, mixed var [, ...]]) - Determine whether a variable is set
  1103. java_last_exception_clear=void java_last_exception_clear (void) - Clear last Java exception
  1104. java_last_exception_get=exception java_last_exception_get (void) - Get last Java exception
  1105. jddayofweek=mixed jddayofweek (int julianday, int mode) - Returns the day of the week
  1106. jdmonthname=string jdmonthname (int julianday, int mode) - Returns a month name
  1107. jdtofrench=string jdtofrench (int juliandaycount) - Converts a Julian Day Count to the French Republican Calendar
  1108. jdtogregorian=string jdtogregorian (int julianday) - Converts Julian Day Count to Gregorian date
  1109. jdtojewish=string jdtojewish (int juliandaycount [, bool hebrew [, int fl]]) - Converts a julian day count to a jewish calendar date
  1110. jdtojulian=string jdtojulian (int julianday) - Converts a Julian Day Count to a Julian Calendar Date
  1111. jdtounix=int jdtounix (int jday) - Convert Julian Day to UNIX timestamp
  1112. jewishtojd=int jewishtojd (int month, int day, int year) - Converts a date in the Jewish Calendar to Julian Day Count
  1113. join=string join (string glue, array pieces) - Join array elements with a string
  1114. jpeg2wbmp=int jpeg2wbmp (string jpegname, string wbmpname, int d_height, int d_width, int threshold) - Convert JPEG image file to WBMP image file
  1115. juliantojd=int juliantojd (int month, int day, int year) - Converts a Julian Calendar date to Julian Day Count
  1116. key=mixed key (array array) - Fetch a key from an associative array
  1117. krsort=int krsort (array array [, int sort_flags]) - Sort an array by key in reverse order
  1118. ksort=int ksort (array array [, int sort_flags]) - Sort an array by key
  1119. lcg_value=float lcg_value (void) - Combined linear congruential generator
  1120. ldap_8859_to_t61=string ldap_8859_to_t61 (string value) - Translate 8859 characters to t61 characters
  1121. ldap_add=bool ldap_add (resource link_identifier, string dn, array entry) - Add entries to LDAP directory
  1122. ldap_bind=bool ldap_bind (resource link_identifier [, string bind_rdn [, string bind_password]]) - Bind to LDAP directory
  1123. ldap_close=bool ldap_close (resource link_identifier) - Close link to LDAP server
  1124. ldap_compare=bool ldap_compare (resource link_identifier, string dn, string attribute, string value) - Compare value of attribute found in entry specified with DN
  1125. ldap_connect=resource ldap_connect ([string hostname [, int port]]) - Connect to an LDAP server
  1126. ldap_count_entries=int ldap_count_entries (resource link_identifier, resource result_identifier) - Count the number of entries in a search
  1127. ldap_delete=bool ldap_delete (resource link_identifier, string dn) - Delete an entry from a directory
  1128. ldap_dn2ufn=string ldap_dn2ufn (string dn) - Convert DN to User Friendly Naming format
  1129. ldap_err2str=string ldap_err2str (int errno) - Convert LDAP error number into string error message
  1130. ldap_errno=int ldap_errno (resource link_identifier) - Return the LDAP error number of the last LDAP command
  1131. ldap_error=string ldap_error (resource link_identifier) - Return the LDAP error message of the last LDAP command
  1132. ldap_explode_dn=array ldap_explode_dn (string dn, int with_attrib) - Splits DN into its component parts
  1133. ldap_first_attribute=string ldap_first_attribute (resource link_identifier, resource result_entry_identifier, int ber_identifier) - Return first attribute
  1134. ldap_first_entry=resource ldap_first_entry (resource link_identifier, resource result_identifier) - Return first result id
  1135. ldap_first_reference=resource ldap_first_reference (resource link, resource result) - Return first reference
  1136. ldap_free_result=bool ldap_free_result (resource result_identifier) - Free result memory
  1137. ldap_get_attributes=array ldap_get_attributes (resource link_identifier, resource result_entry_identifier) - Get attributes from a search result entry
  1138. ldap_get_dn=string ldap_get_dn (resource link_identifier, resource result_entry_identifier) - Get the DN of a result entry
  1139. ldap_get_entries=array ldap_get_entries (resource link_identifier, resource result_identifier) - Get all result entries
  1140. ldap_get_option=bool ldap_get_option (resource link_identifier, int option, mixed retval) - Get the current value for given option
  1141. ldap_get_values=array ldap_get_values (resource link_identifier, resource result_entry_identifier, string attribute) - Get all values from a result entry
  1142. ldap_get_values_len=array ldap_get_values_len (resource link_identifier, resource result_entry_identifier, string attribute) - Get all binary values from a result entry
  1143. ldap_list=resource ldap_list (resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) - Single-level search
  1144. ldap_mod_add=bool ldap_mod_add (resource link_identifier, string dn, array entry) - Add attribute values to current attributes
  1145. ldap_mod_del=bool ldap_mod_del (resource link_identifier, string dn, array entry) - Delete attribute values from current attributes
  1146. ldap_mod_replace=bool ldap_mod_replace (resoure link_identifier, string dn, array entry) - Replace attribute values with new ones
  1147. ldap_modify=bool ldap_modify (resource link_identifier, string dn, array entry) - Modify an LDAP entry
  1148. ldap_next_attribute=string ldap_next_attribute (resource link_identifier, resource result_entry_identifier, resource ber_identifier) - Get the next attribute in result
  1149. ldap_next_entry=resource ldap_next_entry (resource link_identifier, resource result_entry_identifier) - Get next result entry
  1150. ldap_next_reference=resource ldap_next_reference (resource link, resource entry) - Get next reference
  1151. ldap_parse_reference=bool ldap_parse_reference (resource link, resource entry, array referrals) - Extract information from reference entry
  1152. ldap_parse_result=bool ldap_parse_result (resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals) - Extract information from result
  1153. ldap_read=resource ldap_read (resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) - Read an entry
  1154. ldap_rename=bool ldap_rename (resource link_identifier, string dn, string newrdn, string newparent, bool deleteoldrdn) - Modify the name of an entry
  1155. ldap_search=resource ldap_search (resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) - Search LDAP tree
  1156. ldap_set_option=bool ldap_set_option (resource link_identifier, int option, mixed newval) - Set the value of the given option
  1157. ldap_set_rebind_proc=bool ldap_set_rebind_proc (resource link, string callback) - Set a callback function to do re-binds on referral chasing.
  1158. ldap_sort=bool ldap_sort (resource link, resource result, string sortfilter) - Sort LDAP result entries
  1159. ldap_start_tls=bool ldap_start_tls (resource link) - Start TLS
  1160. ldap_t61_to_8859=string ldap_t61_to_8859 (string value) - Translate t61 characters to 8859 characters
  1161. ldap_unbind=bool ldap_unbind (resource link_identifier) - Unbind from LDAP directory
  1162. levenshtein=int levenshtein (string str1, string str2) - Calculate Levenshtein distance between two strings
  1163. link=bool link (string target, string link) - Create a hard link
  1164. linkinfo=int linkinfo (string path) - Gets information about a link
  1165. list=void list (mixed ...) - Assign variables as if they were an array
  1166. localeconv=array localeconv (void) - Get numeric formatting information
  1167. localtime=array localtime ([int timestamp [, bool is_associative]]) - Get the local time
  1168. log=float log (float arg [, float base]) - Natural logarithm
  1169. log10=float log10 (float arg) - Base-10 logarithm
  1170. log1p=float log1p (float number) - Returns log(1 + number), computed in a way that accurate even when the val ue of number is close to zero
  1171. long2ip=string long2ip (int proper_address) - Converts an (IPv4) Internet network address into a string in Internet standard dotted format
  1172. lstat=array lstat (string filename) - Gives information about a file or symbolic link
  1173. ltrim=string ltrim (string str [, string charlist]) - Strip whitespace from the beginning of a string
  1174. mail=bool mail (string to, string subject, string message [, string additional_headers [, string additional_parameters]]) - send mail
  1175. mailparse_determine_best_xfer_encoding=int mailparse_determine_best_xfer_encoding (resource fp) - Figures out the best way of encoding the content read from the file pointer fp, which must be seek-able
  1176. mailparse_msg_create=int mailparse_msg_create (void) - Returns a handle that can be used to parse a message
  1177. mailparse_msg_extract_part=void mailparse_msg_extract_part (resource rfc2045, string msgbody [, string callbackfunc]) - Extracts/decodes a message section.  If callbackfunc is not specified, the contents will be sent to stdout
  1178. mailparse_msg_extract_part_file=string mailparse_msg_extract_part_file (resource rfc2045, string filename [, string callbackfunc]) - Extracts/decodes a message section, decoding the transfer encoding
  1179. mailparse_msg_free=void mailparse_msg_free (resource rfc2045buf) - Frees a handle allocated by mailparse_msg_crea
  1180. mailparse_msg_get_part=int mailparse_msg_get_part (resource rfc2045, string mimesection) - Returns a handle on a given section in a mimemessage
  1181. mailparse_msg_get_part_data=array mailparse_msg_get_part_data (resource rfc2045) - Returns an associative array of info about the message
  1182. mailparse_msg_get_structure=array mailparse_msg_get_structure (resource rfc2045) - Returns an array of mime section names in the supplied message
  1183. mailparse_msg_parse=void mailparse_msg_parse (resource rfc2045buf, string data) - Incrementally parse data into buffer
  1184. mailparse_msg_parse_file=resource mailparse_msg_parse_file (string filename) - Parse file and return a resource representing the structure
  1185. mailparse_rfc822_parse_addresses=array mailparse_rfc822_parse_addresses (string addresses) - Parse addresses and returns a hash containing that data
  1186. mailparse_stream_encode=bool mailparse_stream_encode (resource sourcefp, resource destfp, string encoding) - Streams data from source file pointer, apply encoding and write to destfp
  1187. mailparse_uudecode_all=array mailparse_uudecode_all (resource fp) - Scans the data from fp and extract each embedded uuencoded file. Returns an array listing filename information
  1188. main=main() - Dummy for main()
  1189. max=mixed max (number arg1, number arg2 [, number ...]) - Find highest value
  1190. mb_convert_case=string mb_convert_case (string str, int mode [, string encoding]) - Perform case folding on a string
  1191. mb_convert_encoding=string mb_convert_encoding (string str, string to-encoding [, mixed from-encoding]) - Convert character encoding
  1192. mb_convert_kana=string mb_convert_kana (string str, string option [, mixed encoding]) - Convert "kana" one from another ("zen-kaku" ,"han-kaku" and more)
  1193. mb_convert_variables=string mb_convert_variables (string to-encoding, mixed from-encoding, mixed vars) - Convert character code in variable(s)
  1194. mb_decode_mimeheader=string mb_decode_mimeheader (string str) - Decode string in MIME header field
  1195. mb_decode_numericentity=string mb_decode_numericentity (string str, array convmap [, string encoding]) - Decode HTML numeric string reference to character
  1196. mb_detect_encoding=string mb_detect_encoding (string str [, mixed encoding-list]) - Detect character encoding
  1197. mb_detect_order=array mb_detect_order ([mixed encoding-list]) - Set/Get character encoding detection order
  1198. mb_encode_mimeheader=string mb_encode_mimeheader (string str [, string charset [, string transfer-encoding [, string linefeed]]]) - Encode string for MIME header
  1199. mb_encode_numericentity=string mb_encode_numericentity (string str, array convmap [, string encoding]) - Encode character to HTML numeric string reference
  1200. mb_ereg=int mb_ereg (string pattern, string string [, array regs]) - Regular expression match with multibyte support
  1201. mb_ereg_match=bool mb_ereg_match (string pattern, string string [, string option]) - Regular expression match for multibyte string
  1202. mb_ereg_replace=string mb_ereg_replace (string pattern, string replacement, string string [, array option]) - Replace regular expression with multibyte support
  1203. mb_ereg_search=bool mb_ereg_search ([string pattern [, string option]]) - Multibyte regular expression match for predefined multibyte string
  1204. mb_ereg_search_getpos=array mb_ereg_search_getpos (void) - Returns start point for next regular expression match
  1205. mb_ereg_search_getregs=array mb_ereg_search_getregs (void) - Retrive the result from the last multibyte regular expression match
  1206. mb_ereg_search_init=array mb_ereg_search_init (string string [, string pattern [, string option]]) - Setup string and regular expression for multibyte regular expression match
  1207. mb_ereg_search_pos=array mb_ereg_search_pos ([string pattern [, string option]]) - Return position and length of matched part of multibyte regular expression for predefined multibyte string
  1208. mb_ereg_search_regs=array mb_ereg_search_regs ([string pattern [, string option]]) - Returns the matched part of multibyte regular expression
  1209. mb_ereg_search_setpos=array mb_ereg_search_setpos (void) - Set start point of next regular expression match
  1210. mb_eregi=int mb_eregi (string pattern, string string [, array regs]) - Regular expression match ignoring case with multibyte support
  1211. mb_eregi_replace=string mb_eregi_replace (string pattern, string replace, string string) - Replace regular expression with multibyte support ignoring case
  1212. mb_get_info=string mb_get_info ([string type]) - Get internal settings of mbstring
  1213. mb_http_input=string mb_http_input ([string type]) - Detect HTTP input character encoding
  1214. mb_http_output=string mb_http_output ([string encoding]) - Set/Get HTTP output character encoding
  1215. mb_internal_encoding=string mb_internal_encoding ([string encoding]) - Set/Get internal character encoding
  1216. mb_language=string mb_language ([string language]) - Set/Get current language
  1217. mb_output_handler=string mb_output_handler (string contents, int status) - Callback function converts character encoding in output buffer
  1218. mb_parse_str=bool mb_parse_str (string encoded_string [, array result]) - Parse GET/POST/COOKIE data and set global variable
  1219. mb_preferred_mime_name=string mb_preferred_mime_name (string encoding) - Get MIME charset string
  1220. mb_regex_encoding=string mb_regex_encoding ([string encoding]) - Returns current encoding for multibyte regex as string
  1221. mb_regex_set_options=string mb_regex_set_options ([string options]) - Set/Get the default options for mbregex functions
  1222. mb_send_mail=bool mb_send_mail (string to, string subject, string message [, string additional_headers [, string additional_parameter]]) - Send encoded mail.
  1223. mb_split=array mb_split (string pattern, string string [, int limit]) - Split multibyte string using regular expression
  1224. mb_strcut=string mb_strcut (string str, int start [, int length [, string encoding]]) - Get part of string
  1225. mb_strimwidth=string mb_strimwidth (string str, int start, int width, string trimmarker [, string encoding]) - Get truncated string with specified width
  1226. mb_strlen=string mb_strlen (string str [, string encoding]) - Get string length
  1227. mb_strpos=int mb_strpos (string haystack, string needle [, int offset [, string encoding]]) - Find position of first occurrence of string in a string
  1228. mb_strrpos=int mb_strrpos (string haystack, string needle [, string encoding]) - Find position of last occurrence of a string in a string
  1229. mb_strtolower=string mb_strtolower (string str [, string encoding]) - Make a string lowercase
  1230. mb_strtoupper=string mb_strtoupper (string str [, string encoding]) - Make a string uppercase
  1231. mb_strwidth=int mb_strwidth (string str [, string encoding]) - Return width of string
  1232. mb_substitute_character=mixed mb_substitute_character ([mixed substrchar]) - Set/Get substitution character
  1233. mb_substr=string mb_substr (string str, int start [, int length [, string encoding]]) - Get part of string
  1234. mb_substr_count=int mb_substr_count (string haystack, string needle [, string encoding]) - Count the number of substring occurrences
  1235. mcal_append_event=int mcal_append_event (int mcal_stream) - Store a new event into an MCAL calendar
  1236. mcal_close=int mcal_close (int mcal_stream, int flags) - Close an MCAL stream
  1237. mcal_create_calendar=string mcal_create_calendar (int stream, string calendar) - Create a new MCAL calendar
  1238. mcal_date_compare=int mcal_date_compare (int a_year, int a_month, int a_day, int b_year, int b_month, int b_day) - Compares two dates
  1239. mcal_date_valid=int mcal_date_valid (int year, int month, int day) - Returns TRUE if the given year, month, day is a valid date
  1240. mcal_day_of_week=int mcal_day_of_week (int year, int month, int day) - Returns the day of the week of the given date
  1241. mcal_day_of_year=int mcal_day_of_year (int year, int month, int day) - Returns the day of the year of the given date
  1242. mcal_days_in_month=int mcal_days_in_month (int month, int leap_year) - Returns the number of days in a month
  1243. mcal_delete_calendar=string mcal_delete_calendar (int stream, string calendar) - Delete an MCAL calendar
  1244. mcal_delete_event=int mcal_delete_event (int mcal_stream [, int event_id]) - Delete an event from an MCAL calendar
  1245. mcal_event_add_attribute=void mcal_event_add_attribute (int stream, string attribute, string value) - Adds an attribute and a value to the streams global event structure
  1246. mcal_event_init=int mcal_event_init (int stream) - Initializes a streams global event structure
  1247. mcal_event_set_alarm=int mcal_event_set_alarm (int stream, int alarm) - Sets the alarm of the streams global event structure
  1248. mcal_event_set_category=int mcal_event_set_category (int stream, string category) - Sets the category of the streams global event structure
  1249. mcal_event_set_class=int mcal_event_set_class (int stream, int class) - Sets the class of the streams global event structure
  1250. mcal_event_set_description=int mcal_event_set_description (int stream, string description) - Sets the description of the streams global event structure
  1251. mcal_event_set_end=int mcal_event_set_end (int stream, int year, int month [, int day [, int hour [, int min [, int sec]]]]) - Sets the end date and time of the streams global event structure
  1252. mcal_event_set_recur_daily=int mcal_event_set_recur_daily (int stream, int year, int month, int day, int interval) - Sets the recurrence of the streams global event structure
  1253. mcal_event_set_recur_monthly_mday=int mcal_event_set_recur_monthly_mday (int stream, int year, int month, int day, int interval) - Sets the recurrence of the streams global event structure
  1254. mcal_event_set_recur_monthly_wday=int mcal_event_set_recur_monthly_wday (int stream, int year, int month, int day, int interval) - Sets the recurrence of the streams global event structure
  1255. mcal_event_set_recur_none=int mcal_event_set_recur_none (int stream) - Sets the recurrence of the streams global event structure
  1256. mcal_event_set_recur_weekly=int mcal_event_set_recur_weekly (int stream, int year, int month, int day, int interval, int weekdays) - Sets the recurrence of the streams global event structure
  1257. mcal_event_set_recur_yearly=int mcal_event_set_recur_yearly (int stream, int year, int month, int day, int interval) - Sets the recurrence of the streams global event structure
  1258. mcal_event_set_start=int mcal_event_set_start (int stream, int year, int month [, int day [, int hour [, int min [, int sec]]]]) - Sets the start date and time of the streams global event structure
  1259. mcal_event_set_title=int mcal_event_set_title (int stream, string title) - Sets the title of the streams global event structure
  1260. mcal_expunge=int mcal_expunge (int stream) - Deletes all events marked for being expunged.
  1261. mcal_fetch_current_stream_event=object mcal_fetch_current_stream_event (int stream) - Returns an object containing the current streams event structure
  1262. mcal_fetch_event=object mcal_fetch_event (int mcal_stream, int event_id [, int options]) - Fetches an event from the calendar stream
  1263. mcal_is_leap_year=int mcal_is_leap_year (int year) - Returns if the given year is a leap year or not
  1264. mcal_list_alarms=array mcal_list_alarms (int mcal_stream [, int begin_year [, int begin_month [, int begin_day [, int end_year [, int end_month [, int end_day]]]]]]) - Return a list of events that has an alarm triggered at the given datetime
  1265. mcal_list_events=array mcal_list_events (int mcal_stream, object begin_date [, object end_date]) - Return a list of IDs for a date or a range of dates
  1266. mcal_next_recurrence=int mcal_next_recurrence (int stream, int weekstart, array next) - Returns the next recurrence of the event
  1267. mcal_open=int mcal_open (string calendar, string username, string password [, int options]) - Opens up an MCAL connection
  1268. mcal_popen=int mcal_popen (string calendar, string username, string password [, int options]) - Opens up a persistent MCAL connection
  1269. mcal_rename_calendar=string mcal_rename_calendar (int stream, string old_name, string new_name) - Rename an MCAL calendar
  1270. mcal_reopen=int mcal_reopen (string calendar [, int options]) - Reopens an MCAL connection
  1271. mcal_snooze=bool mcal_snooze (int stream_id, int event_id) - Turn off an alarm for an event
  1272. mcal_store_event=int mcal_store_event (int mcal_stream) - Modify an existing event in an MCAL calendar
  1273. mcal_time_valid=int mcal_time_valid (int hour, int minutes, int seconds) - Returns TRUE if the given year, month, day is a valid time
  1274. mcal_week_of_year=int mcal_week_of_year (int day, int month, int year) - Returns the week number of the given date
  1275. mcrypt_cbc=string mcrypt_cbc (int cipher, string key, string data, int mode [, string iv]) - Encrypt/decrypt data in CBC mode
  1276. mcrypt_cfb=string mcrypt_cfb (int cipher, string key, string data, int mode, string iv) - Encrypt/decrypt data in CFB mode
  1277. mcrypt_create_iv=string mcrypt_create_iv (int size, int source) - Create an initialization vector (IV) from a random source
  1278. mcrypt_decrypt=string mcrypt_decrypt (string cipher, string key, string data, string mode [, string iv]) - Decrypts crypttext with given parameters
  1279. mcrypt_ecb=string mcrypt_ecb (int cipher, string key, string data, int mode) - Encrypt/decrypt data in ECB mode
  1280. mcrypt_enc_get_algorithms_name=string mcrypt_enc_get_algorithms_name (resource td) - Returns the name of the opened algorithm
  1281. mcrypt_enc_get_block_size=int mcrypt_enc_get_block_size (resource td) - Returns the blocksize of the opened algorithm
  1282. mcrypt_enc_get_iv_size=int mcrypt_enc_get_iv_size (resource td) - Returns the size of the IV of the opened algorithm
  1283. mcrypt_enc_get_key_size=int mcrypt_enc_get_key_size (resource td) - Returns the maximum supported keysize of the opened mode
  1284. mcrypt_enc_get_modes_name=string mcrypt_enc_get_modes_name (resource td) - Returns the name of the opened mode
  1285. mcrypt_enc_get_supported_key_sizes=array mcrypt_enc_get_supported_key_sizes (resource td) - Returns an array with the supported keysizes of the opened algorithm
  1286. mcrypt_enc_is_block_algorithm=bool mcrypt_enc_is_block_algorithm (resource td) - Checks whether the algorithm of the opened mode is a block algorithm
  1287. mcrypt_enc_is_block_algorithm_mode=bool mcrypt_enc_is_block_algorithm_mode (resource td) - Checks whether the encryption of the opened mode works on blocks
  1288. mcrypt_enc_is_block_mode=bool mcrypt_enc_is_block_mode (resource td) - Checks whether the opened mode outputs blocks
  1289. mcrypt_enc_self_test=bool mcrypt_enc_self_test (resource td) - This function runs a self test on the opened module
  1290. mcrypt_encrypt=string mcrypt_encrypt (string cipher, string key, string data, string mode [, string iv]) - Encrypts plaintext with given parameters
  1291. mcrypt_generic=string mcrypt_generic (resource td, string data) - This function encrypts data
  1292. mcrypt_generic_deinit=bool mcrypt_generic_deinit (resource td) - This function deinitializes an encryption module
  1293. mcrypt_generic_end=bool mcrypt_generic_end (resource td) - This function terminates encryption
  1294. mcrypt_generic_init=int mcrypt_generic_init (resource td, string key, string iv) - This function initializes all buffers needed for encryption
  1295. mcrypt_get_block_size=int mcrypt_get_block_size (int cipher) - Get the block size of the specified cipher
  1296. mcrypt_get_cipher_name=string mcrypt_get_cipher_name (int cipher) - Get the name of the specified cipher
  1297. mcrypt_get_iv_size=int mcrypt_get_iv_size (resource td) - Returns the size of the IV belonging to a specific cipher/mode combination
  1298. mcrypt_get_key_size=int mcrypt_get_key_size (int cipher) - Get the key size of the specified cipher
  1299. mcrypt_list_algorithms=array mcrypt_list_algorithms ([string lib_dir]) - Get an array of all supported ciphers
  1300. mcrypt_list_modes=array mcrypt_list_modes ([string lib_dir]) - Get an array of all supported modes
  1301. mcrypt_module_close=bool mcrypt_module_close (resource td) - Close the mcrypt module
  1302. mcrypt_module_get_algo_block_size=int mcrypt_module_get_algo_block_size (string algorithm [, string lib_dir]) - Returns the blocksize of the specified algorithm
  1303. mcrypt_module_get_algo_key_size=int mcrypt_module_get_algo_key_size (string algorithm [, string lib_dir]) - Returns the maximum supported keysize of the opened mode
  1304. mcrypt_module_get_supported_key_sizes=array mcrypt_module_get_supported_key_sizes (string algorithm [, string lib_dir]) - Returns an array with the supported keysizes of the opened algorithm
  1305. mcrypt_module_is_block_algorithm=bool mcrypt_module_is_block_algorithm (string algorithm [, string lib_dir]) - This function checks whether the specified algorithm is a block algorithm
  1306. mcrypt_module_is_block_algorithm_mode=bool mcrypt_module_is_block_algorithm_mode (string mode [, string lib_dir]) - This function returns if the the specified module is a block algorithm or not
  1307. mcrypt_module_is_block_mode=bool mcrypt_module_is_block_mode (string mode [, string lib_dir]) - This function returns if the the specified mode outputs blocks or not
  1308. mcrypt_module_open=resource mcrypt_module_open (string algorithm, string algorithm_directory, string mode, string mode_directory) - Opens the module of the algorithm and the mode to be used
  1309. mcrypt_module_self_test=bool mcrypt_module_self_test (string algorithm [, string lib_dir]) - This function runs a self test on the specified module
  1310. mcrypt_ofb=string mcrypt_ofb (int cipher, string key, string data, int mode, string iv) - Encrypt/decrypt data in OFB mode
  1311. mcve_adduser=int mcve_adduser (resource conn, string admin_password, int usersetup) - Add an MCVE user using usersetup structure
  1312. mcve_adduserarg=int mcve_adduserarg (resource usersetup, int argtype, string argval) - Add a value to user configuration structure
  1313. mcve_bt=int mcve_bt (resource conn, string username, string password) - Get unsettled batch totals
  1314. mcve_checkstatus=int mcve_checkstatus (resource conn, int identifier) - Check to see if a transaction has completed
  1315. mcve_chkpwd=int mcve_chkpwd (resource conn, string username, string password) - Verify Password
  1316. mcve_chngpwd=int mcve_chngpwd (resource conn, string admin_password, string new_password) - Change the system administrator's password
  1317. mcve_completeauthorizations=int mcve_completeauthorizations (resource conn, int &array) - Number of complete authorizations in queue, returning an array of their identifiers
  1318. mcve_connect=int mcve_connect (resource conn) - Establish the connection to MCVE
  1319. mcve_connectionerror=string mcve_connectionerror (resource conn) - Get a textual representation of why a connection failed
  1320. mcve_deleteresponse=bool mcve_deleteresponse (resource conn, int identifier) - Delete specified transaction from MCVE_CONN structure
  1321. mcve_deletetrans=bool mcve_deletetrans (resource conn, int identifier) - Delete specified transaction from MCVE_CONN structure
  1322. mcve_deleteusersetup=void mcve_deleteusersetup (resource usersetup) - Deallocate data associated with usersetup structure
  1323. mcve_deluser=int mcve_deluser (resource conn, string admin_password, string username) - Delete an MCVE user account
  1324. mcve_destroyconn=void mcve_destroyconn (resource conn) - Destroy the connection and MCVE_CONN structure
  1325. mcve_destroyengine=void mcve_destroyengine (void) - Free memory associated with IP/SSL connectivity
  1326. mcve_disableuser=int mcve_disableuser (resource conn, string admin_password, string username) - Disable an active MCVE user account
  1327. mcve_edituser=int mcve_edituser (resource conn, string admin_password, int usersetup) - Edit MCVE user using usersetup structure
  1328. mcve_enableuser=int mcve_enableuser (resource conn, string admin_password, string username) - Enable an inactive MCVE user account
  1329. mcve_force=int mcve_force (resiurce conn, string username, string password, string trackdata, string account, string expdate, float amount, string authcode, string comments, string clerkid, string stationid, int ptrannum) - Send a FORCE to MCVE. (typically, a phone-authorization)
  1330. mcve_getcell=string mcve_getcell (resource conn, int identifier, string column, int row) - Get a specific cell from a comma delimited response by column name
  1331. mcve_getcellbynum=string mcve_getcellbynum (resource conn, int identifier, int column, int row) - Get a specific cell from a comma delimited response by column number
  1332. mcve_getcommadelimited=string mcve_getcommadelimited (resource conn, int identifier) - Get the RAW comma delimited data returned from MCVE
  1333. mcve_getheader=string mcve_getheader (resource conn, int identifier, int column_num) - Get the name of the column in a comma-delimited response
  1334. mcve_getuserarg=string mcve_getuserarg (resource usersetup, int argtype) - Grab a value from usersetup structure
  1335. mcve_getuserparam=string mcve_getuserparam (resource conn, long identifier, int key) - Get a user response parameter
  1336. mcve_gft=int mcve_gft (resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate) - Audit MCVE for Failed transactions
  1337. mcve_gl=int mcve_gl (int conn, string username, string password, int type, string account, string batch, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate) - Audit MCVE for settled transactions
  1338. mcve_gut=int mcve_gut (resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate) - Audit MCVE for Unsettled Transactions
  1339. mcve_initconn=resource mcve_initconn (void) - Create and initialize an MCVE_CONN structure
  1340. mcve_initengine=int mcve_initengine (string location) - Ready the client for IP/SSL Communication
  1341. mcve_initusersetup=resource mcve_initusersetup (void) - Initialize structure to store user data
  1342. mcve_iscommadelimited=int mcve_iscommadelimited (resource conn, int identifier) - Checks to see if response is comma delimited
  1343. mcve_liststats=int mcve_liststats (resource conn, string admin_password) - List statistics for all users on MCVE system
  1344. mcve_listusers=int mcve_listusers (resource conn, string admin_password) - List all users on MCVE system
  1345. mcve_maxconntimeout=bool mcve_maxconntimeout (resource conn, int secs) - The maximum amount of time the API will attempt a connection to MCVE
  1346. mcve_monitor=int mcve_monitor (resource conn) - Perform communication with MCVE (send/receive data) Non-blocking
  1347. mcve_numcolumns=int mcve_numcolumns (resource conn, int identifier) - Number of columns returned in a comma delimited response
  1348. mcve_numrows=int mcve_numrows (resource conn, int identifier) - Number of rows returned in a comma delimited response
  1349. mcve_override=int mcve_override (resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum) - Send an OVERRIDE to MCVE
  1350. mcve_parsecommadelimited=int mcve_parsecommadelimited (resource conn, int identifier) - Parse the comma delimited response so mcve_getcell, etc will work
  1351. mcve_ping=int mcve_ping (resource conn) - Send a ping request to MCVE
  1352. mcve_preauth=int mcve_preauth (resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum) - Send a PREAUTHORIZATION to MCVE
  1353. mcve_preauthcompletion=int mcve_preauthcompletion (resource conn, string username, string password, float finalamount, int sid, int ptrannum) - Complete a PREAUTHORIZATION... Ready it for settlement
  1354. mcve_qc=int mcve_qc (resource conn, string username, string password, string clerkid, string stationid, string comments, int ptrannum) - Audit MCVE for a list of transactions in the outgoing queue
  1355. mcve_responseparam=string mcve_responseparam (resource conn, long identifier, string key) - Get a custom response parameter
  1356. mcve_return=int mcve_return (int conn, string username, string password, string trackdata, string account, string expdate, float amount, string comments, string clerkid, string stationid, int ptrannum) - Issue a RETURN or CREDIT to MCVE
  1357. mcve_returncode=int mcve_returncode (resource conn, int identifier) - Grab the exact return code from the transaction
  1358. mcve_returnstatus=int mcve_returnstatus (resource conn, int identifier) - Check to see if the transaction was successful
  1359. mcve_sale=int mcve_sale (resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum) - Send a SALE to MCVE
  1360. mcve_setblocking=int mcve_setblocking (resource conn, int tf) - Set blocking/non-blocking mode for connection
  1361. mcve_setdropfile=int mcve_setdropfile (resource conn, string directory) - Set the connection method to Drop-File
  1362. mcve_setip=int mcve_setip (resource conn, string host, int port) - Set the connection method to IP
  1363. mcve_setssl=int mcve_setssl (resource conn, string host, int port) - Set the connection method to SSL
  1364. mcve_setssl_files=int mcve_setssl_files (string sslkeyfile, string sslcertfile) - Set certificate key files and certificates if server requires client certificate verification
  1365. mcve_settimeout=int mcve_settimeout (resource conn, int seconds) - Set maximum transaction time (per trans)
  1366. mcve_settle=int mcve_settle (resource conn, string username, string password, string batch) - Issue a settlement command to do a batch deposit
  1367. mcve_text_avs=string mcve_text_avs (string code) - Get a textual representation of the return_avs
  1368. mcve_text_code=string mcve_text_code (string code) - Get a textual representation of the return_code
  1369. mcve_text_cv=string mcve_text_cv (int code) - Get a textual representation of the return_cv
  1370. mcve_transactionauth=string mcve_transactionauth (resource conn, int identifier) - Get the authorization number returned for the transaction (alpha-numeric)
  1371. mcve_transactionavs=int mcve_transactionavs (resource conn, int identifier) - Get the Address Verification return status
  1372. mcve_transactionbatch=int mcve_transactionbatch (resource conn, int identifier) - Get the batch number associated with the transaction
  1373. mcve_transactioncv=int mcve_transactioncv (resource conn, int identifier) - Get the CVC2/CVV2/CID return status
  1374. mcve_transactionid=int mcve_transactionid (resource conn, int identifier) - Get the unique system id for the transaction
  1375. mcve_transactionitem=int mcve_transactionitem (resource conn, int identifier) - Get the ITEM number in the associated batch for this transaction
  1376. mcve_transactionssent=int mcve_transactionssent (resource conn) - Check to see if outgoing buffer is clear
  1377. mcve_transactiontext=string mcve_transactiontext (resource conn, int identifier) - Get verbiage (text) return from MCVE or processing institution
  1378. mcve_transinqueue=int mcve_transinqueue (resource conn) - Number of transactions in client-queue
  1379. mcve_transnew=int mcve_transnew (resource conn) - Start a new transaction
  1380. mcve_transparam=int mcve_transparam (resource conn, long identifier, int key) - Add a parameter to a transaction
  1381. mcve_transsend=int mcve_transsend (resource conn, long identifier) - Finalize and send the transaction
  1382. mcve_ub=int mcve_ub (resource conn, string username, string password) - Get a list of all Unsettled batches
  1383. mcve_uwait=int mcve_uwait (long microsecs) - Wait x microsecs
  1384. mcve_verifyconnection=bool mcve_verifyconnection (resource conn, int tf) - Set whether or not to PING upon connect to verify connection
  1385. mcve_verifysslcert=bool mcve_verifysslcert (resource conn, int tf) - Set whether or not to verify the server ssl certificate
  1386. mcve_void=int mcve_void (resource conn, string username, string password, int sid, int ptrannum) - VOID a transaction in the settlement queue
  1387. md5=string md5 (string str [, bool raw_output]) - Calculate the md5 hash of a string
  1388. md5_file=string md5_file (string filename [, bool raw_output]) - Calculates the md5 hash of a given filename
  1389. mdecrypt_generic=string mdecrypt_generic (resource td, string data) - Decrypt data
  1390. memory_get_usage=int memory_get_usage (void) - Returns the amount of memory allocated to PHP
  1391. metaphone=string metaphone (string str) - Calculate the metaphone key of a string
  1392. method_exists=bool method_exists (object object, string method_name) - Checks if the class method exists
  1393. mhash=string mhash (int hash, string data [, string key]) - Compute hash
  1394. mhash_count=int mhash_count (void) - Get the highest available hash id
  1395. mhash_get_block_size=int mhash_get_block_size (int hash) - Get the block size of the specified hash
  1396. mhash_get_hash_name=string mhash_get_hash_name (int hash) - Get the name of the specified hash
  1397. mhash_keygen_s2k=string mhash_keygen_s2k (int hash, string password, string salt, int bytes) - Generates a key
  1398. microtime=string microtime (void) - Return current UNIX timestamp with microseconds
  1399. mime_content_type=string mime_content_type (string filename) - Detect MIME Content-type for a file
  1400. min=mixed min (number arg1, number arg2 [, number ...]) - Find lowest value
  1401. ming_setcubicthreshold=void ming_setcubicthreshold (int threshold) - Set cubic threshold (?)
  1402. ming_setscale=void ming_setscale (int scale) - Set scale (?)
  1403. ming_useswfversion=void ming_useswfversion (int version) - Use SWF version (?)
  1404. mkdir=bool mkdir (string pathname [, int mode]) - Makes directory
  1405. mktime=int mktime ([int hour [, int minute [, int second [, int month [, int day [, int year [, int is_dst]]]]]]]) - Get UNIX timestamp for a date
  1406. money_format=string money_format (string format, float number) - Formats a number as a currency string
  1407. move_uploaded_file=bool move_uploaded_file (string filename, string destination) - Moves an uploaded file to a new location
  1408. msession_connect=bool msession_connect (string host, string port) - Connect to msession server
  1409. msession_count=int msession_count (void) - Get session count
  1410. msession_create=bool msession_create (string session) - Create a session
  1411. msession_destroy=bool msession_destroy (string name) - Destroy a session
  1412. msession_disconnect=void msession_disconnect (void) - Close connection to msession server
  1413. msession_find=array msession_find (string name, string value) - Find value
  1414. msession_get=string msession_get (string session, string name, string value) - Get value from session
  1415. msession_get_array=array msession_get_array (string session) - Get array of ... ?
  1416. msession_getdata=string msession_getdata (string session) - Get data ... ?
  1417. msession_inc=string msession_inc (string session, string name) - Increment value in session
  1418. msession_list=array msession_list (void) - List ... ?
  1419. msession_listvar=array msession_listvar (string name) - List sessions with variable
  1420. msession_lock=int msession_lock (string name) - Lock a session
  1421. msession_plugin=string msession_plugin (string session, string val [, string param]) - Call an escape function within the msession personality plugin
  1422. msession_randstr=string msession_randstr (int param) - Get random string
  1423. msession_set=bool msession_set (string session, string name, string value) - Set value in session
  1424. msession_set_array=bool msession_set_array (string session, array tuples) - Set array of ...
  1425. msession_setdata=bool msession_setdata (string session, string value) - Set data  ... ?
  1426. msession_timeout=int msession_timeout (string session [, int param]) - Set/get session timeout
  1427. msession_uniq=string msession_uniq (int param) - Get uniq id
  1428. msession_unlock=int msession_unlock (string session, int key) - Unlock a session
  1429. msg_get_queue=int msg_get_queue (int key [, int perms]) - Create or attach to a message queue
  1430. msg_receive=bool msg_receive (int queue, int desiredmsgtype, int msgtype, int maxsize, mixed message [, bool unserialize [, int flags [, int errorcode]]]) - Receive a message from a message queue
  1431. msg_remove_queue=bool msg_remove_queue (int queue) - Destroy a message queue
  1432. msg_send=bool msg_send (int queue, int msgtype, mixed message [, bool serialize [, bool blocking [, int errorcode]]]) - Send a message to a message queue
  1433. msg_set_queue=bool msg_set_queue (int queue, array data) - Set information in the message queue data structure
  1434. msg_stat_queue=array msg_stat_queue (int queue) - Returns information from the message queue data structure
  1435. msql=int msql (string database, string query, int link_identifier) - Send mSQL query
  1436. msql_affected_rows=int msql_affected_rows (int query_identifier) - Returns number of affected rows
  1437. msql_close=int msql_close (int link_identifier) - Close mSQL connection
  1438. msql_connect=int msql_connect ([string hostname [, string server [, string username [, string password]]]]) - Open mSQL connection
  1439. msql_create_db=int msql_create_db (string database_name [, int link_identifier]) - Create mSQL database
  1440. msql_createdb=int msql_createdb (string database_name [, int link_identifier]) - Create mSQL database
  1441. msql_data_seek=int msql_data_seek (int query_identifier, int row_number) - Move internal row pointer
  1442. msql_dbname=string msql_dbname (int query_identifier, int i) - Get current mSQL database name
  1443. msql_drop_db=int msql_drop_db (string database_name, int link_identifier) - Drop (delete) mSQL database
  1444. msql_dropdb=int msql_dropdb (string database_name, int link_identifier) - Drop (delete) mSQL database
  1445. msql_error=string msql_error ([int link_identifier]) - Returns error message of last msql call
  1446. msql_fetch_array=int msql_fetch_array (int query_identifier [, int result_type]) - Fetch row as array
  1447. msql_fetch_field=object msql_fetch_field (int query_identifier, int field_offset) - Get field information
  1448. msql_fetch_object=int msql_fetch_object (int query_identifier [, int result_type]) - Fetch row as object
  1449. msql_fetch_row=array msql_fetch_row (int query_identifier) - Get row as enumerated array
  1450. msql_field_seek=int msql_field_seek (int query_identifier, int field_offset) - Set field offset
  1451. msql_fieldflags=string msql_fieldflags (int query_identifier, int i) - Get field flags
  1452. msql_fieldlen=int msql_fieldlen (int query_identifier, int i) - Get field length
  1453. msql_fieldname=string msql_fieldname (int query_identifier, int field) - Get field name
  1454. msql_fieldtable=int msql_fieldtable (int query_identifier, int field) - Get table name for field
  1455. msql_fieldtype=string msql_fieldtype (int query_identifier, int i) - Get field type
  1456. msql_free_result=int msql_free_result (int query_identifier) - Free result memory
  1457. msql_freeresult=int msql_freeresult (int query_identifier) - Free result memory
  1458. msql_list_dbs=int msql_list_dbs (void) - List mSQL databases on server
  1459. msql_list_fields=int msql_list_fields (string database, string tablename) - List result fields
  1460. msql_list_tables=int msql_list_tables (string database) - List tables in an mSQL database
  1461. msql_listdbs=int msql_listdbs (void) - List mSQL databases on server
  1462. msql_listfields=int msql_listfields (string database, string tablename) - List result fields
  1463. msql_listtables=int msql_list_tables (string database) - List tables in an mSQL database
  1464. msql_num_fields=int msql_num_fields (int query_identifier) - Get number of fields in result
  1465. msql_num_rows=int msql_num_rows (int query_identifier) - Get number of rows in result
  1466. msql_numfields=int msql_numfields (int query_identifier) - Get number of fields in result
  1467. msql_numrows=int msql_numrows (void) - Get number of rows in result
  1468. msql_pconnect=int msql_pconnect ([string server [, string username [, string password]]]) - Open persistent mSQL connection
  1469. msql_query=int msql_query (string query, int link_identifier) - Send mSQL query
  1470. msql_regcase=string msql_regcase (string string) - Make regular expression for case insensitive match
  1471. msql_result=int msql_result (int query_identifier, int i, mixed field) - Get result data
  1472. msql_select_db=int msql_select_db (string database_name, int link_identifier) - Select mSQL database
  1473. msql_selectdb=int msql_selectdb (string database_name, int link_identifier) - Select mSQL database
  1474. msql_tablename=string msql_tablename (int query_identifier, int field) - Get table name of field
  1475. mssql_bind=bool mssql_bind (resource stmt, string param_name, mixed var, int type [, int is_output [, int is_null [, int maxlen]]]) - Adds a parameter to a stored procedure or a remote stored procedure
  1476. mssql_close=bool mssql_close ([resource link_identifier]) - Close MS SQL Server connection
  1477. mssql_connect=int mssql_connect ([string servername [, string username [, string password]]]) - Open MS SQL server connection
  1478. mssql_data_seek=bool mssql_data_seek (resource result_identifier, int row_number) - Moves internal row pointer
  1479. mssql_execute=mixed mssql_execute (resource stmt [, bool skip_results]) - Executes a stored procedure on a MS SQL server database
  1480. mssql_fetch_array=array mssql_fetch_array (resource result [, int result_type]) - Fetch a result row as an associative array, a numeric array, or both
  1481. mssql_fetch_assoc=array mssql_fetch_assoc (resource result_id) - Returns an associative array of the current row in the result set specified by result_id
  1482. mssql_fetch_batch=int mssql_fetch_batch (resource result_index) - Returns the next batch of records
  1483. mssql_fetch_field=object mssql_fetch_field (resource result [, int field_offset]) - Get field information
  1484. mssql_fetch_object=object mssql_fetch_object (resource result) - Fetch row as object
  1485. mssql_fetch_row=array mssql_fetch_row (resource result) - Get row as enumerated array
  1486. mssql_field_length=int mssql_field_length (resource result [, int offset]) - Get the length of a field
  1487. mssql_field_name=string mssql_field_name (resource result [, int offset]) - Get the name of a field
  1488. mssql_field_seek=bool mssql_field_seek (resource result, int field_offset) - Seeks to the specified field offset
  1489. mssql_field_type=string mssql_field_type (resource result [, int offset]) - Gets the type of a field
  1490. mssql_free_result=bool mssql_free_result (resource result) - Free result memory
  1491. mssql_free_statement=bool mssql_free_statement (resource statement) - Free statement memory
  1492. mssql_get_last_message=string mssql_get_last_message (void) - Returns the last message from the server
  1493. mssql_guid_string=string mssql_guid_string (string binary [, int short_format]) - Converts a 16 byte binary GUID to a string
  1494. mssql_init=int mssql_init (string sp_name [, resource conn_id]) - Initializes a stored procedure or a remote stored procedure
  1495. mssql_min_error_severity=void mssql_min_error_severity (int severity) - Sets the lower error severity
  1496. mssql_min_message_severity=void mssql_min_message_severity (int severity) - Sets the lower message severity
  1497. mssql_next_result=bool mssql_next_result (resource result_id) - Move the internal result pointer to the next result
  1498. mssql_num_fields=int mssql_num_fields (resource result) - Gets the number of fields in result
  1499. mssql_num_rows=int mssql_num_rows (resource result) - Gets the number of rows in result
  1500. mssql_pconnect=int mssql_pconnect ([string servername [, string username [, string password]]]) - Open persistent MS SQL connection
  1501. mssql_query=resource mssql_query (string query [, resource link_identifier [, int batch_size]]) - Send MS SQL query
  1502. mssql_result=string mssql_result (resource result, int i, mixed field) - Get result data
  1503. mssql_rows_affected=int mssql_rows_affected (resource conn_id) - Returns the number of records affected by the query
  1504. mssql_select_db=bool mssql_select_db (string database_name [, resource link_identifier]) - Select MS SQL database
  1505. mt_getrandmax=int mt_getrandmax (void) - Show largest possible random value
  1506. mt_rand=int mt_rand ([int min, int max]) - Generate a better random value
  1507. mt_srand=void mt_srand (int seed) - Seed the better random number generator
  1508. muscat_close=int muscat_close (resource muscat_handle) - Shuts down the muscat session and releases any memory back to PHP.
  1509. muscat_get=string muscat_get (resource muscat_handle) - Gets a line back from the core muscat API.
  1510. muscat_give=int muscat_give (resource muscat_handle, string string) - Sends string to the core muscat API
  1511. muscat_setup=resource muscat_setup (int size [, string muscat_dir]) - Creates a new muscat session and returns the handle.
  1512. muscat_setup_net=resource muscat_setup_net (string muscat_host, int port) - Creates a new muscat session and returns the handle.
  1513. mysql_affected_rows=int mysql_affected_rows ([resource link_identifier]) - Get number of affected rows in previous MySQL operation
  1514. mysql_change_user=int mysql_change_user (string user, string password [, string database [, resource link_identifier]]) - Change logged in user of the active connection
  1515. mysql_client_encoding=int mysql_client_encoding ([resource link_identifier]) - Returns the name of the character set
  1516. mysql_close=bool mysql_close ([resource link_identifier]) - Close MySQL connection
  1517. mysql_connect=resource mysql_connect ([string server [, string username [, string password [, bool new_link [, int client_flags]]]]]) - Open a connection to a MySQL Server
  1518. mysql_create_db=bool mysql_create_db (string database_name [, resource link_identifier]) - Create a MySQL database
  1519. mysql_data_seek=bool mysql_data_seek (resource result_identifier, int row_number) - Move internal result pointer
  1520. mysql_db_name=string mysql_db_name (resource result, int row [, mixed field]) - Get result data
  1521. mysql_db_query=resource mysql_db_query (string database, string query [, resource link_identifier]) - Send a MySQL query
  1522. mysql_drop_db=bool mysql_drop_db (string database_name [, resource link_identifier]) - Drop (delete) a MySQL database
  1523. mysql_errno=int mysql_errno ([resource link_identifier]) - Returns the numerical value of the error message from previous MySQL operation
  1524. mysql_error=string mysql_error ([resource link_identifier]) - Returns the text of the error message from previous MySQL operation
  1525. mysql_escape_string=string mysql_escape_string (string unescaped_string) - Escapes a string for use in a mysql_query.
  1526. mysql_fetch_array=array mysql_fetch_array (resource result [, int result_type]) - Fetch a result row as an associative array, a numeric array, or both.
  1527. mysql_fetch_assoc=array mysql_fetch_assoc (resource result) - Fetch a result row as an associative array
  1528. mysql_fetch_field=object mysql_fetch_field (resource result [, int field_offset]) - Get column information from a result and return as an object
  1529. mysql_fetch_lengths=array mysql_fetch_lengths (resource result) - Get the length of each output in a result
  1530. mysql_fetch_object=object mysql_fetch_object (resource result) - Fetch a result row as an object
  1531. mysql_fetch_row=array mysql_fetch_row (resource result) - Get a result row as an enumerated array
  1532. mysql_field_flags=string mysql_field_flags (resource result, int field_offset) - Get the flags associated with the specified field in a result
  1533. mysql_field_len=int mysql_field_len (resource result, int field_offset) - Returns the length of the specified field
  1534. mysql_field_name=string mysql_field_name (resource result, int field_index) - Get the name of the specified field in a result
  1535. mysql_field_seek=int mysql_field_seek (resource result, int field_offset) - Set result pointer to a specified field offset
  1536. mysql_field_table=string mysql_field_table (resource result, int field_offset) - Get name of the table the specified field is in
  1537. mysql_field_type=string mysql_field_type (resource result, int field_offset) - Get the type of the specified field in a result
  1538. mysql_free_result=bool mysql_free_result (resource result) - Free result memory
  1539. mysql_get_client_info=string mysql_get_client_info (void) - Get MySQL client info
  1540. mysql_get_host_info=string mysql_get_host_info ([resource link_identifier]) - Get MySQL host info
  1541. mysql_get_proto_info=int mysql_get_proto_info ([resource link_identifier]) - Get MySQL protocol info
  1542. mysql_get_server_info=string mysql_get_server_info ([resource link_identifier]) - Get MySQL server info
  1543. mysql_info=string mysql_info ([resource link_identifier]) - Get information about the most recent query
  1544. mysql_insert_id=int mysql_insert_id ([resource link_identifier]) - Get the ID generated from the previous INSERT operation
  1545. mysql_list_dbs=resource mysql_list_dbs ([resource link_identifier]) - List databases available on a MySQL server
  1546. mysql_list_fields=resource mysql_list_fields (string database_name, string table_name [, resource link_identifier]) - List MySQL table fields
  1547. mysql_list_processes=resource mysql_list_processes ([resource link_identifier]) - List MySQL processes
  1548. mysql_list_tables=resource mysql_list_tables (string database [, resource link_identifier]) - List tables in a MySQL database
  1549. mysql_num_fields=int mysql_num_fields (resource result) - Get number of fields in result
  1550. mysql_num_rows=int mysql_num_rows (resource result) - Get number of rows in result
  1551. mysql_pconnect=resource mysql_pconnect ([string server [, string username [, string password [, int client_flags]]]]) - Open a persistent connection to a MySQL server
  1552. mysql_ping=bool mysql_ping ([resource link_identifier]) - Ping a server connection or reconnect if there is no connection
  1553. mysql_query=resource mysql_query (string query [, resource link_identifier]) - Send a MySQL query
  1554. mysql_real_escape_string=string mysql_real_escape_string (string unescaped_string [, resource link_identifier]) - Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection.
  1555. mysql_result=mixed mysql_result (resource result, int row [, mixed field]) - Get result data
  1556. mysql_select_db=bool mysql_select_db (string database_name [, resource link_identifier]) - Select a MySQL database
  1557. mysql_stat=string mysql_stat ([resource link_identifier]) - Get current system status
  1558. mysql_tablename=string mysql_tablename (resource result, int i) - Get table name of field
  1559. mysql_thread_id=int mysql_thread_id ([resource link_identifier]) - Return the current thread ID
  1560. mysql_unbuffered_query=resource mysql_unbuffered_query (string query [, resource link_identifier]) - Send an SQL query to MySQL, without fetching and buffering the result rows
  1561. mysqli_affected_rows=mixed mysqli_affected_rows (resource link) - Gets the number of affected rows in a previous MySQL operation
  1562. mysqli_autocommit=bool mysqli_autocommit (resource link, bool mode) - Turns on or off auto-commiting database modifications
  1563. mysqli_bind_param=bool mysqli_bind_param (resource stmt, mixed variable, int type) - Binds variables to a prepared statement as parameters
  1564. mysqli_bind_result=bool mysqli_bind_result (resource stmt, mixed var, int len) - Binds variables to a prepared statement for result storage
  1565. mysqli_change_user=bool mysqli_change_user (resource link, string user, string password, string database) - Changes the user of the specified database connection
  1566. mysqli_character_set_name=string mysqli_character_set_name (resource link) - Returns the default character set for the database connection
  1567. mysqli_close=bool mysqli_close (resource link) - Closes a previously opened database connection
  1568. mysqli_commit=bool mysqli_commit (resource link) - Commits the current transaction
  1569. mysqli_connect=resource mysqli_connect ([string hostname [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]]) - Open a new connection to the MySQL server
  1570. mysqli_data_seek=void mysqli_data_seek (resource result, int offset) - Adjusts the result pointer to an arbitary row in the result
  1571. mysqli_debug=void mysqli_debug (string debug) - Performs debugging operations
  1572. mysqli_disable_reads_from_master=void mysqli_disable_reads_from_master (resource link) -
  1573. mysqli_disable_rpl_parse=void mysqli_disable_rpl_parse (resource link) -
  1574. mysqli_dump_debug_info=bool mysqli_dump_debug_info (resource link) - Dump debugging information into the log
  1575. mysqli_enable_reads_from_master=void mysqli_enable_reads_from_master (resource link) -
  1576. mysqli_enable_rpl_parse=void mysqli_enable_rpl_parse (resource link) -
  1577. mysqli_errno=int mysqli_errno (resource link) - Returns the error code for the most recent function call
  1578. mysqli_error=string mysqli_error (resource link) - Returns a string description of the last error
  1579. mysqli_execute=int mysqli_execute (resource stmt) - Executes a prepared Query
  1580. mysqli_fetch=int mysqli_fetch (resource stmt) - Fetch results from a prepared statement into the bound variables
  1581. mysqli_fetch_array=array mysqli_fetch_array (resource result [, int resulttype]) - Fetch a result row as an associative, a numeric array, or both.
  1582. mysqli_fetch_assoc=array mysqli_fetch_assoc (resource result) - Fetch a result row as an associative array
  1583. mysqli_fetch_field=object mysqli_fetch_field (resource result) - Returns the next field in the result set
  1584. mysqli_fetch_field_direct=int mysqli_fetch_field_direct (resource result, int offset) - Fetch meta-data for a single field
  1585. mysqli_fetch_fields=array mysqli_fetch_fields (resource result) - Returns an array of objects representing the fields in a result set
  1586. mysqli_fetch_lengths=array mysqli_fetch_lengths (resource result) - Returns the lengths of the columns of the current row in the result set
  1587. mysqli_fetch_object=object mysqli_fetch_object (resource result) - Returns the current row of a result set as an object
  1588. mysqli_fetch_row=array mysqli_fetch_row (resource result) - Get a result row as an enumerated array
  1589. mysqli_field_count=int mysqli_field_count (resource link) - Returns the number of columns for the most recent query
  1590. mysqli_field_seek=int mysqli_field_seek (resource link, int fieldnr) - Set result pointer to a specified field offset
  1591. mysqli_field_tell=int mysqli_field_tell (resource result) - Get current field offset of a result pointer
  1592. mysqli_free_result=int mysqli_free_result (resource result) - Frees the memory associated with a result
  1593. mysqli_get_client_info=string mysqli_get_client_info (void) - Returns the MySQL client version as a string
  1594. mysqli_get_host_info=string mysqli_get_host_info (resource link) - Returns a string representing the type of connection used
  1595. mysqli_get_proto_info=int mysqli_get_proto_info (resource link) - Returns the version of the MySQL protocol used
  1596. mysqli_get_server_info=string mysqli_get_server_info (resource link) - Returns the version of the MySQL server
  1597. mysqli_get_server_version=int mysqli_get_server_version (resource link) - Returns the version of the MySQL server as an integer
  1598. mysqli_info=string mysqli_info (resource link) - Retrieves information about the most recently executed query
  1599. mysqli_init=resource mysqli_init (void) - Initializes MySQLi and returns a resource for use with mysqli_real_connect
  1600. mysqli_insert_id=mixed mysqli_insert_id (resource link) - Returns the auto generated id used in the last query
  1601. mysqli_kill=bool mysqli_kill (resource link, int processid) - Asks the server to kill a MySQL thread
  1602. mysqli_master_query=bool mysqli_master_query (resource link, string query) - Enforce execution of a query on the master in a master/slave setup
  1603. mysqli_num_fields=int mysqli_num_fields (resource result) - Get the number of fields in a result
  1604. mysqli_num_rows=int mysqli_num_rows (resource result) - Gets the number of rows in a result
  1605. mysqli_options=bool mysqli_options (resource link, int flags, mixed values) - set options
  1606. mysqli_param_count=int mysqli_param_count (resource stmt) - Returns the number of parameter for the given statement
  1607. mysqli_ping=int mysqli_ping (resource link) - Ping a server connection, or reconnect if there is no connection
  1608. mysqli_prepare=resource mysqli_prepare (resource link, string query) - Prepare a SQL statement for execution
  1609. mysqli_prepare_result=resource mysqli_prepare_result (resource stmt) -
  1610. mysqli_profiler=bool mysqli_profiler (int flags, string info, int port) -
  1611. mysqli_query=resource mysqli_query (resource link, string query [, int resultmode]) - Performs a query on the database
  1612. mysqli_read_query_result=bool mysqli_read_query_result (resource link) -
  1613. mysqli_real_connect=bool mysqli_real_connect (resource link [, string hostname [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]]) - Opens a connection to a mysql server
  1614. mysqli_real_escape_string=string mysqli_real_escape_string (resource link, string escapestr) - Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection
  1615. mysqli_real_query=bool mysqli_real_query (resource link, string query) - Execute an SQL query
  1616. mysqli_reload=bool mysqli_reload (resource link) -
  1617. mysqli_rollback=bool mysqli_rollback (resource link) -
  1618. mysqli_rpl_parse_enabled=int mysqli_rpl_parse_enabled (resource link) -
  1619. mysqli_rpl_probe=bool mysqli_rpl_probe (resource link) -
  1620. mysqli_rpl_query_type=int mysqli_rpl_query_type (string query) -
  1621. mysqli_select_db=bool mysqli_select_db (resource link, string dbname) - Selects the default database for database queries
  1622. mysqli_send_long_data=bool mysqli_send_long_data (resource stmt, int param_nr, string data) -
  1623. mysqli_send_query=bool mysqli_send_query (resource link, string query) -
  1624. mysqli_slave_query=bool mysqli_slave_query (resource link, string query) - Enforces execution of a query on a slave in a master/slave setup
  1625. mysqli_ssl_set=string mysqli_ssl_set (resource link [, string key [, string cert [, string ca [, string capath [, string cipher]]]]]) -
  1626. mysqli_stat=string mysqli_stat (resource link) - Gets the current system status
  1627. mysqli_stmt_affected_rows=mixed mysqli_stmt_affected_rows (object stmt) -
  1628. mysqli_stmt_close=bool mysqli_stmt_close (resource stmt) - close statement
  1629. mysqli_stmt_errno=int mysqli_stmt_errno (resource stmt) -
  1630. mysqli_stmt_error=string mysqli_stmt_error (resource stmt) -
  1631. mysqli_stmt_store_result=resource mysqli_stmt_store_result (resource stmt) -
  1632. mysqli_store_result=resource mysqli_store_result (resource link) - Transfers a result set from the last query
  1633. mysqli_thread_id=int mysqli_thread_id (resource link) - Returns the thread ID for the current connection
  1634. mysqli_thread_safe=bool mysqli_thread_safe (void) - Returns whether thread safety is given or not
  1635. mysqli_use_result=resource mysqli_use_result (resource link) - Initiate a result set retrieval
  1636. mysqli_warning_count=resource mysqli_warning_count (resource link) - Returns the number of warnings from the last query for the given link
  1637. natcasesort=void natcasesort (array array) - Sort an array using a case insensitive "natural order" algorithm
  1638. natsort=void natsort (array array) - Sort an array using a "natural order" algorithm
  1639. ncurses_addch=int ncurses_addch (int ch) - Add character at current position and advance cursor
  1640. ncurses_addchnstr=int ncurses_addchnstr (string s, int n) - Add attributed string with specified length at current position
  1641. ncurses_addchstr=int ncurses_addchstr (string s) - Add attributed string at current position
  1642. ncurses_addnstr=int ncurses_addnstr (string s, int n) - Add string with specified length at current position
  1643. ncurses_addstr=int ncurses_addstr (string text) - Output text at current position
  1644. ncurses_assume_default_colors=int ncurses_assume_default_colors (int fg, int bg) - Define default colors for color 0
  1645. ncurses_attroff=int ncurses_attroff (int attributes) - Turn off the given attributes
  1646. ncurses_attron=int ncurses_attron (int attributes) - Turn on the given attributes
  1647. ncurses_attrset=int ncurses_attrset (int attributes) - Set given attributes
  1648. ncurses_baudrate=int ncurses_baudrate (void) - Returns baudrate of terminal
  1649. ncurses_beep=int ncurses_beep (void) - Let the terminal beep
  1650. ncurses_bkgd=int ncurses_bkgd (int attrchar) - Set background property for terminal screen
  1651. ncurses_bkgdset=void ncurses_bkgdset (int attrchar) - Control screen background
  1652. ncurses_border=int ncurses_border (int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner) - Draw a border around the screen using attributed characters
  1653. ncurses_bottom_panel=int ncurses_bottom_panel (resource panel) - Moves a visible panel to the bottom of the stack
  1654. ncurses_can_change_color=bool ncurses_can_change_color (void) - Check if we can change terminals colors
  1655. ncurses_cbreak=bool ncurses_cbreak (void) - Switch of input buffering
  1656. ncurses_clear=bool ncurses_clear (void) - Clear screen
  1657. ncurses_clrtobot=bool ncurses_clrtobot (void) - Clear screen from current position to bottom
  1658. ncurses_clrtoeol=bool ncurses_clrtoeol (void) - Clear screen from current position to end of line
  1659. ncurses_color_content=int ncurses_color_content (int color, int &r, int &g, int &b) - Gets the RGB value for color
  1660. ncurses_color_set=int ncurses_color_set (int pair) - Set fore- and background color
  1661. ncurses_curs_set=int ncurses_curs_set (int visibility) - Set cursor state
  1662. ncurses_def_prog_mode=bool ncurses_def_prog_mode (void) - Saves terminals (program) mode
  1663. ncurses_def_shell_mode=bool ncurses_def_shell_mode (void) - Saves terminals (shell) mode
  1664. ncurses_define_key=int ncurses_define_key (string definition, int keycode) - Define a keycode
  1665. ncurses_del_panel=int ncurses_del_panel (resource panel) - Remove panel from the stack and delete it (but not the associated window)
  1666. ncurses_delay_output=int ncurses_delay_output (int milliseconds) - Delay output on terminal using padding characters
  1667. ncurses_delch=bool ncurses_delch (void) - Delete character at current position, move rest of line left
  1668. ncurses_deleteln=bool ncurses_deleteln (void) - Delete line at current position, move rest of screen up
  1669. ncurses_delwin=int ncurses_delwin (resource window) - Delete a ncurses window
  1670. ncurses_doupdate=bool ncurses_doupdate (void) - Write all prepared refreshes to terminal
  1671. ncurses_echo=bool ncurses_echo (void) - Activate keyboard input echo
  1672. ncurses_echochar=int ncurses_echochar (int character) - Single character output including refresh
  1673. ncurses_end=int ncurses_end (void) - Stop using ncurses, clean up the screen
  1674. ncurses_erase=bool ncurses_erase (void) - Erase terminal screen
  1675. ncurses_erasechar=string ncurses_erasechar (void) - Returns current erase character
  1676. ncurses_filter=int ncurses_filter (void) -
  1677. ncurses_flash=bool ncurses_flash (void) - Flash terminal screen (visual bell)
  1678. ncurses_flushinp=bool ncurses_flushinp (void) - Flush keyboard input buffer
  1679. ncurses_getch=int ncurses_getch (void) - Read a character from keyboard
  1680. ncurses_getmaxyx=void ncurses_getmaxyx (resource window, int &y, int &x) - Returns the size of a window
  1681. ncurses_getmouse=bool ncurses_getmouse (array mevent) - Reads mouse event
  1682. ncurses_getyx=void ncurses_getyx (resource window, int &y, int &x) - Returns the current cursor position for a window
  1683. ncurses_halfdelay=int ncurses_halfdelay (int tenth) - Put terminal into halfdelay mode
  1684. ncurses_has_colors=bool ncurses_has_colors (void) - Check if terminal has colors
  1685. ncurses_has_ic=bool ncurses_has_ic (void) - Check for insert- and delete-capabilities
  1686. ncurses_has_il=bool ncurses_has_il (void) - Check for line insert- and delete-capabilities
  1687. ncurses_has_key=int ncurses_has_key (int keycode) - Check for presence of a function key on terminal keyboard
  1688. ncurses_hide_panel=int ncurses_hide_panel (resource panel) - Remove panel from the stack, making it invisible
  1689. ncurses_hline=int ncurses_hline (int charattr, int n) - Draw a horizontal line at current position using an attributed character and max. n characters long
  1690. ncurses_inch=string ncurses_inch (void) - Get character and attribute at current position
  1691. ncurses_init=int ncurses_init (void) - Initialize ncurses
  1692. ncurses_init_color=int ncurses_init_color (int color, int r, int g, int b) - Set new RGB value for color
  1693. ncurses_init_pair=int ncurses_init_pair (int pair, int fg, int bg) - Allocate a color pair
  1694. ncurses_insch=int ncurses_insch (int character) - Insert character moving rest of line including character at current position
  1695. ncurses_insdelln=int ncurses_insdelln (int count) - Insert lines before current line scrolling down (negative numbers delete and scroll up)
  1696. ncurses_insertln=bool ncurses_insertln (void) - Insert a line, move rest of screen down
  1697. ncurses_insstr=int ncurses_insstr (string text) - Insert string at current position, moving rest of line right
  1698. ncurses_instr=int ncurses_instr (string buffer) - Reads string from terminal screen
  1699. ncurses_isendwin=bool ncurses_isendwin (void) - Ncurses is in endwin mode, normal screen output may be performed
  1700. ncurses_keyok=int ncurses_keyok (int keycode, bool enable) - Enable or disable a keycode
  1701. ncurses_keypad=int ncurses_keypad (resource window, bool bf) - Turns keypad on or off
  1702. ncurses_killchar=bool ncurses_killchar (void) - Returns current line kill character
  1703. ncurses_longname=string ncurses_longname (void) - Returns terminals description
  1704. ncurses_meta=long ncurses_meta (resource window, bool 8bit) - Enables/Disable 8-bit meta key information
  1705. ncurses_mouse_trafo=bool ncurses_mouse_trafo (int &y, int &x, bool toscreen) - Transforms coordinates
  1706. ncurses_mouseinterval=int ncurses_mouseinterval (int milliseconds) - Set timeout for mouse button clicks
  1707. ncurses_mousemask=int ncurses_mousemask (int newmask, int oldmask) - Sets mouse options
  1708. ncurses_move=int ncurses_move (int y, int x) - Move output position
  1709. ncurses_move_panel=int ncurses_move_panel (resource panel, int startx, int starty) - Moves a panel so that it's upper-left corner is at [startx, starty]
  1710. ncurses_mvaddch=int ncurses_mvaddch (int y, int x, int c) - Move current position and add character
  1711. ncurses_mvaddchnstr=int ncurses_mvaddchnstr (int y, int x, string s, int n) - Move position and add attrributed string with specified length
  1712. ncurses_mvaddchstr=int ncurses_mvaddchstr (int y, int x, string s) - Move position and add attributed string
  1713. ncurses_mvaddnstr=int ncurses_mvaddnstr (int y, int x, string s, int n) - Move position and add string with specified length
  1714. ncurses_mvaddstr=int ncurses_mvaddstr (int y, int x, string s) - Move position and add string
  1715. ncurses_mvcur=int ncurses_mvcur (int old_y, int old_x, int new_y, int new_x) - Move cursor immediately
  1716. ncurses_mvdelch=int ncurses_mvdelch (int y, int x) - Move position and delete character, shift rest of line left
  1717. ncurses_mvgetch=int ncurses_mvgetch (int y, int x) - Move position and get character at new position
  1718. ncurses_mvhline=int ncurses_mvhline (int y, int x, int attrchar, int n) - Set new position and draw a horizontal line using an attributed character and max. n characters long
  1719. ncurses_mvinch=int ncurses_mvinch (int y, int x) - Move position and get attributed character at new position
  1720. ncurses_mvvline=int ncurses_mvvline (int y, int x, int attrchar, int n) - Set new position and draw a vertical line using an attributed character and max. n characters long
  1721. ncurses_mvwaddstr=int ncurses_mvwaddstr (resource window, int y, int x, string text) - Add string at new position in window
  1722. ncurses_napms=int ncurses_napms (int milliseconds) - Sleep
  1723. ncurses_new_panel=resource ncurses_new_panel (resource window) - Create a new panel and associate it with window
  1724. ncurses_newpad=resource ncurses_newpad (int rows, int cols) - Creates a new pad (window)
  1725. ncurses_newwin=int ncurses_newwin (int rows, int cols, int y, int x) - Create a new window
  1726. ncurses_nl=bool ncurses_nl (void) - Translate newline and carriage return / line feed
  1727. ncurses_nocbreak=bool ncurses_nocbreak (void) - Switch terminal to cooked mode
  1728. ncurses_noecho=bool ncurses_noecho (void) - Switch off keyboard input echo
  1729. ncurses_nonl=bool ncurses_nonl (void) - Do not translate newline and carriage return / line feed
  1730. ncurses_noqiflush=int ncurses_noqiflush (void) - Do not flush on signal characters
  1731. ncurses_noraw=bool ncurses_noraw (void) - Switch terminal out of raw mode
  1732. ncurses_pair_content=int ncurses_pair_content (int pair, int &f, int &b) - Gets the RGB value for color
  1733. ncurses_panel_above=int ncurses_panel_above (resource panel) - Returns the panel above panel. If panel is null, returns the bottom panel in the stack
  1734. ncurses_panel_below=int ncurses_panel_below (resource panel) - Returns the panel below panel. If panel is null, returns the top panel in the stack
  1735. ncurses_panel_window=int ncurses_panel_window (resource panel) - Returns the window associated with panel
  1736. ncurses_pnoutrefresh=int ncurses_pnoutrefresh (resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol) - Copys a region from a pad into the virtual screen
  1737. ncurses_prefresh=int ncurses_prefresh (resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol) - Copys a region from a pad into the virtual screen
  1738. ncurses_putp=int ncurses_putp (string text) -
  1739. ncurses_qiflush=int ncurses_qiflush (void) - Flush on signal characters
  1740. ncurses_raw=bool ncurses_raw (void) - Switch terminal into raw mode
  1741. ncurses_refresh=int ncurses_refresh (int ch) - Refresh screen
  1742. ncurses_replace_panel=int ncurses_replace_panel (resource panel, resource window) - Replaces the window associated with panel
  1743. ncurses_reset_prog_mode=int ncurses_reset_prog_mode (void) - Resets the prog mode saved by def_prog_mode
  1744. ncurses_reset_shell_mode=int ncurses_reset_shell_mode (void) - Resets the shell mode saved by def_shell_mode
  1745. ncurses_resetty=bool ncurses_resetty (void) - Restores saved terminal state
  1746. ncurses_savetty=bool ncurses_savetty (void) - Saves terminal state
  1747. ncurses_scr_dump=int ncurses_scr_dump (string filename) - Dump screen content to file
  1748. ncurses_scr_init=int ncurses_scr_init (string filename) - Initialize screen from file dump
  1749. ncurses_scr_restore=int ncurses_scr_restore (string filename) - Restore screen from file dump
  1750. ncurses_scr_set=int ncurses_scr_set (string filename) - Inherit screen from file dump
  1751. ncurses_scrl=int ncurses_scrl (int count) - Scroll window content up or down without changing current position
  1752. ncurses_show_panel=int ncurses_show_panel (resource panel) - Places an invisible panel on top of the stack, making it visible
  1753. ncurses_slk_attr=bool ncurses_slk_attr (void) - Returns current soft label key attribute
  1754. ncurses_slk_attroff=int ncurses_slk_attroff (int intarg) -
  1755. ncurses_slk_attron=int ncurses_slk_attron (int intarg) -
  1756. ncurses_slk_attrset=int ncurses_slk_attrset (int intarg) -
  1757. ncurses_slk_clear=bool ncurses_slk_clear (void) - Clears soft labels from screen
  1758. ncurses_slk_color=int ncurses_slk_color (int intarg) - Sets color for soft label keys
  1759. ncurses_slk_init=bool ncurses_slk_init (int format) - Initializes soft label key functions
  1760. ncurses_slk_noutrefresh=bool ncurses_slk_noutrefresh (void) - Copies soft label keys to virtual screen
  1761. ncurses_slk_refresh=bool ncurses_slk_refresh (void) - Copies soft label keys to screen
  1762. ncurses_slk_restore=bool ncurses_slk_restore (void) - Restores soft label keys
  1763. ncurses_slk_set=bool ncurses_slk_set (int labelnr, string label, int format) - Sets function key labels
  1764. ncurses_slk_touch=bool ncurses_slk_touch (void) - Fources output when ncurses_slk_noutrefresh is performed
  1765. ncurses_standend=int ncurses_standend (void) - Stop using 'standout' attribute
  1766. ncurses_standout=int ncurses_standout (void) - Start using 'standout' attribute
  1767. ncurses_start_color=int ncurses_start_color (void) - Start using colors
  1768. ncurses_termattrs=bool ncurses_termattrs (void) - Returns a logical OR of all attribute flags supported by terminal
  1769. ncurses_termname=string ncurses_termname (void) - Returns terminals (short)-name
  1770. ncurses_timeout=void ncurses_timeout (int millisec) - Set timeout for special key sequences
  1771. ncurses_top_panel=int ncurses_top_panel (resource panel) - Moves a visible panel to the top of the stack
  1772. ncurses_typeahead=int ncurses_typeahead (int fd) - Specify different filedescriptor for typeahead checking
  1773. ncurses_ungetch=int ncurses_ungetch (int keycode) - Put a character back into the input stream
  1774. ncurses_ungetmouse=bool ncurses_ungetmouse (array mevent) - Pushes mouse event to queue
  1775. ncurses_update_panels=void ncurses_update_panels (void) - Refreshes the virtual screen to reflect the relations between panels in the stack.
  1776. ncurses_use_default_colors=bool ncurses_use_default_colors (void) - Assign terminal default colors to color id -1
  1777. ncurses_use_env=void ncurses_use_env (bool flag) - Control use of environment information about terminal size
  1778. ncurses_use_extended_names=int ncurses_use_extended_names (bool flag) - Control use of extended names in terminfo descriptions
  1779. ncurses_vidattr=int ncurses_vidattr (int intarg) -
  1780. ncurses_vline=int ncurses_vline (int charattr, int n) - Draw a vertical line at current position using an attributed character and max. n characters long
  1781. ncurses_waddch=int ncurses_waddch (resource window, int ch) - Adds character at current position in a window and advance cursor
  1782. ncurses_waddstr=int ncurses_waddstr (resource window, string str [, int n]) - Outputs text at current postion in window
  1783. ncurses_wattroff=int ncurses_wattroff (resource window, int attrs) - Turns off attributes for a window
  1784. ncurses_wattron=int ncurses_wattron (resource window, int attrs) - Turns on attributes for a window
  1785. ncurses_wattrset=int ncurses_wattrset (resource window, int attrs) - Set the attributes for a window
  1786. ncurses_wborder=int ncurses_wborder (resource window, int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner) - Draws a border around the window using attributed characters
  1787. ncurses_wclear=int ncurses_wclear (resource window) - Clears window
  1788. ncurses_wcolor_set=int ncurses_wcolor_set (resource window, int color_pair) - Sets windows color pairings
  1789. ncurses_werase=long ncurses_werase (resource window) - Erase window contents
  1790. ncurses_wgetch=int ncurses_wgetch (resource window) - Reads a character from keyboard (window)
  1791. ncurses_whline=int ncurses_whline (resource window, int charattr, int n) - Draws a horizontal line in a window at current position using an attributed character and max. n characters long
  1792. ncurses_wmouse_trafo=bool ncurses_wmouse_trafo (resource window, int &y, int &x, bool toscreen) - Transforms window/stdscr coordinates
  1793. ncurses_wmove=int ncurses_wmove (resource window, int y, int x) - Moves windows output position
  1794. ncurses_wnoutrefresh=int ncurses_wnoutrefresh (resource window) - Copies window to virtual screen
  1795. ncurses_wrefresh=int ncurses_wrefresh (resource window) - Refresh window on terminal screen
  1796. ncurses_wstandend=int ncurses_wstandend (resource window) - End standout mode for a window
  1797. ncurses_wstandout=int ncurses_wstandout (resource window) - Enter standout mode for a window
  1798. ncurses_wvline=int ncurses_wvline (resource window, int charattr, int n) - Draws a vertical line in a window at current position using an attributed character and max. n characters long
  1799. next=mixed next (array array) - Advance the internal array pointer of an array
  1800. ngettext=string ngettext (string msgid1, string msgid2, int n) - Plural version of gettext
  1801. nl2br=string nl2br (string string) - Inserts HTML line breaks before all newlines in a string
  1802. nl_langinfo=string nl_langinfo (int item) - Query language and locale information
  1803. notes_body=array notes_body (string server, string mailbox, int msg_number) - Open the message msg_number in the specified mailbox on the specified server (leave serv
  1804. notes_copy_db=string notes_copy_db (string from_database_name, string to_database_name) - Create a note using form form_name
  1805. notes_create_db=bool notes_create_db (string database_name) - Create a Lotus Notes database
  1806. notes_create_note=string notes_create_note (string database_name, string form_name) - Create a note using form form_name
  1807. notes_drop_db=bool notes_drop_db (string database_name) - Drop a Lotus Notes database
  1808. notes_find_note=bool notes_find_note (string database_name, string name [, string type]) - Returns a note id found in database_name. Specify the name of the note. Leaving type bla
  1809. notes_header_info=object notes_header_info (string server, string mailbox, int msg_number) - Open the message msg_number in the specified mailbox on the specified server (leave serv
  1810. notes_list_msgs=bool notes_list_msgs (string db) - Returns the notes from a selected database_name
  1811. notes_mark_read=string notes_mark_read (string database_name, string user_name, string note_id) - Mark a note_id as read for the User user_name
  1812. notes_mark_unread=string notes_mark_unread (string database_name, string user_name, string note_id) - Mark a note_id as unread for the User user_name
  1813. notes_nav_create=bool notes_nav_create (string database_name, string name) - Create a navigator name, in database_name
  1814. notes_search=string notes_search (string database_name, string keywords) - Find notes that match keywords in database_name
  1815. notes_unread=string notes_unread (string database_name, string user_name) - Returns the unread note id's for the current User user_name
  1816. notes_version=string notes_version (string database_name) - Get the version Lotus Notes
  1817. nsapi_request_headers=array nsapi_request_headers (void) - Fetch all HTTP request headers
  1818. nsapi_response_headers=array nsapi_response_headers (void) - Fetch all HTTP response headers
  1819. nsapi_virtual=int nsapi_virtual (string uri) - Perform an NSAPI sub-request
  1820. number_format=string number_format (float number [, int decimals]) - Format a number with grouped thousands
  1821. ob_clean=void ob_clean (void) - Clean (erase) the output buffer
  1822. ob_end_clean=bool ob_end_clean (void) - Clean (erase) the output buffer and turn off output buffering
  1823. ob_end_flush=bool ob_end_flush (void) - Flush (send) the output buffer and turn off output buffering
  1824. ob_flush=void ob_flush (void) - Flush (send) the output buffer
  1825. ob_get_clean=string ob_get_clean (void) - Get current buffer contents and delete current output buffer
  1826. ob_get_contents=string ob_get_contents (void) - Return the contents of the output buffer
  1827. ob_get_length=int ob_get_length (void) - Return the length of the output buffer
  1828. ob_get_level=int ob_get_level (void) - Return the nesting level of the output buffering mechanism
  1829. ob_get_status=array ob_get_status ([bool full_status]) - Get status of output buffers
  1830. ob_gzhandler=string ob_gzhandler (string buffer [, int mode]) - ob_start callback function to gzip output buffer
  1831. ob_iconv_handler=array ob_iconv_handler (string contents, int status) - Convert character encoding as output buffer handler
  1832. ob_implicit_flush=void ob_implicit_flush ([int flag]) - Turn implicit flush on/off
  1833. ob_start=bool ob_start ([callback output_callback]) - Turn on output buffering
  1834. ocibindbyname=bool ocibindbyname (resource stmt, string ph_name, mixed &variable [, int maxlength [, int type]]) - Bind a PHP variable to an Oracle Placeholder
  1835. ocicancel=bool ocicancel (resource stmt) - Cancel reading from cursor
  1836. ocicollappend=bool ocicollappend (string value) - Append an object to the collection
  1837. ocicollassign=bool ocicollassign (object from) - Assign a collection from another existing collection
  1838. ocicollassignelem=bool ocicollassignelem (int ndx, string val) - Assign element val to collection at index ndx
  1839. ocicollgetelem=string ocicollgetelem (int ndx) - Retrieve the value at collection index ndx
  1840. ocicollmax=int ocicollmax (void) - Return the max value of a collection. For a varray this is the maximum length of the array
  1841. ocicollsize=int ocicollsize (void) - Return the size of a collection
  1842. ocicolltrim=bool ocicolltrim (int num) - Trim num elements from the end of a collection
  1843. ocicolumnisnull=bool ocicolumnisnull (resource stmt, mixed col) - Test whether a result column is
  1844. ocicolumnname=string ocicolumnname (resource stmt, int col) - Returns the name of a column
  1845. ocicolumnprecision=int ocicolumnprecision (resource stmt, int col) - Tell the precision of a column
  1846. ocicolumnscale=int ocicolumnscale (resource stmt, int col) - Tell the scale of a column
  1847. ocicolumnsize=int ocicolumnsize (resource stmt, mixed column) - Return result column size
  1848. ocicolumntype=mixed ocicolumntype (resource stmt, int col) - Returns the data type of a column
  1849. ocicolumntyperaw=mixed ocicolumntyperaw (resource stmt, int col) - Tell the raw oracle data type of a column
  1850. ocicommit=bool ocicommit (resource connection) - Commits outstanding transactions
  1851. ocidefinebyname=bool ocidefinebyname (resource stmt, string column_name, mixed &variable [, int type]) - Use a PHP variable for the define-step during a SELECT
  1852. ocierror=array ocierror ([resource stmt|conn|global]) - Return the last error of stmt|conn|global
  1853. ociexecute=bool ociexecute (resource stmt [, int mode]) - Execute a statement
  1854. ocifetch=bool ocifetch (resource stmt) - Fetches the next row into result-buffer
  1855. ocifetchinto=int ocifetchinto (resource stmt, array &result [, int mode]) - Fetches the next row into an array
  1856. ocifetchstatement=int ocifetchstatement (resource stmt, array &output [, int skip [, int maxrows [, int flags]]]) - Fetch all rows of result data into an array
  1857. ocifreecollection=bool ocifreecollection (void) - Deletes collection object
  1858. ocifreecursor=bool ocifreecursor (resource stmt) - Free all resources associated with a cursor
  1859. ocifreedesc=bool ocifreedesc (void) - Deletes a large object descriptor
  1860. ocifreestatement=bool ocifreestatement (resource stmt) - Free all resources associated with a statement
  1861. ociinternaldebug=void ociinternaldebug (int onoff) - Enables or disables internal debug output
  1862. ociloadlob=string ociloadlob (void) - Loads a large object
  1863. ocilogoff=bool ocilogoff (resource connection) - Disconnects from Oracle server
  1864. ocilogon=resource ocilogon (string username, string password [, string db]) - Establishes a connection to Oracle
  1865. ocinewcollection=object ocinewcollection (resource connection, string tdo [, string schema]) - Initialize a new collection
  1866. ocinewcursor=resource ocinewcursor (resource conn) - Return a new cursor (Statement-Handle)
  1867. ocinewdescriptor=object ocinewdescriptor (resource connection [, int type]) - Initialize a new empty LOB or FILE descriptor
  1868. ocinlogon=resource ocinlogon (string username, string password [, string db]) - Establishes a new connection to Oracle
  1869. ocinumcols=int ocinumcols (resource stmt) - Return the number of result columns in a statement
  1870. ociparse=resource ociparse (resource conn, string query) - Parse a query and return an Oracle statement
  1871. ociplogon=resource ociplogon (string username, string password [, string db]) - Connect to an Oracle database using a persistent connection
  1872. ociresult=mixed ociresult (resource statement, mixed col) - Returns column value for fetched row
  1873. ocirollback=bool ocirollback (resource connection) - Rolls back outstanding transactions
  1874. ocirowcount=int ocirowcount (resource stmt) - Gets the number of affected rows
  1875. ocisavelob=bool ocisavelob (void) - Saves a large object
  1876. ocisavelobfile=bool ocisavelobfile (void) - Saves a large object file
  1877. ociserverversion=string ociserverversion (resource conn) - Return a string containing server version information
  1878. ocisetprefetch=bool ocisetprefetch (resource stmt, int rows) - Sets number of rows to be prefetched
  1879. ocistatementtype=string ocistatementtype (resource stmt) - Return the type of an OCI statement
  1880. ociwritelobtofile=bool ociwritelobtofile ([string filename [, int start [, int length]]]) - Saves a large object file
  1881. octdec=int octdec (string octal_string) - Octal to decimal
  1882. odbc_autocommit=bool odbc_autocommit (resource connection_id [, bool OnOff]) - Toggle autocommit behaviour
  1883. odbc_binmode=int odbc_binmode (resource result_id, int mode) - Handling of binary column data
  1884. odbc_close=void odbc_close (resource connection_id) - Close an ODBC connection
  1885. odbc_close_all=void odbc_close_all (void) - Close all ODBC connections
  1886. odbc_columnprivileges=int odbc_columnprivileges (resource connection_id [, string qualifier [, string owner [, string table_name [, string column_name]]]]) - Returns a result identifier that can be used to fetch a list of columns and associated privileges
  1887. odbc_columns=resource odbc_columns (resource connection_id [, string qualifier [, string schema [, string table_name [, string column_name]]]]) - Lists the column names in specified tables. Returns a result identifier containing the information.
  1888. odbc_commit=bool odbc_commit (resource connection_id) - Commit an ODBC transaction
  1889. odbc_connect=resource odbc_connect (string dsn, string user, string password [, int cursor_type]) - Connect to a datasource
  1890. odbc_cursor=string odbc_cursor (resource result_id) - Get cursorname
  1891. odbc_data_source=resource odbc_data_source (resource connection_id, constant fetch_type) - Returns information about a current connection
  1892. odbc_do=resource odbc_do (resource conn_id, string query) - Synonym for
  1893. odbc_error=string odbc_error ([resource connection_id]) - Get the last error code
  1894. odbc_errormsg=string odbc_errormsg ([resource connection_id]) - Get the last error message
  1895. odbc_exec=resource odbc_exec (resource connection_id, string query_string) - Prepare and execute a SQL statement
  1896. odbc_execute=bool odbc_execute (resource result_id [, array parameters_array]) - Execute a prepared statement
  1897. odbc_fetch_array=array odbc_fetch_array (resource result [, int rownumber]) - Fetch a result row as an associative array
  1898. odbc_fetch_into=bool odbc_fetch_into (resource result_id [, int rownumber, array result_array]) - Fetch one result row into array
  1899. odbc_fetch_object=object odbc_fetch_object (resource result [, int rownumber]) - Fetch a result row as an object
  1900. odbc_fetch_row=bool odbc_fetch_row (resource result_id [, int row_number]) - Fetch a row
  1901. odbc_field_len=int odbc_field_len (resource result_id, int field_number) - Get the length (precision) of a field
  1902. odbc_field_name=string odbc_field_name (resource result_id, int field_number) - Get the columnname
  1903. odbc_field_num=int odbc_field_num (resource result_id, string field_name) - Return column number
  1904. odbc_field_precision=string odbc_field_precision (resource result_id, int field_number) - Synonym for
  1905. odbc_field_scale=string odbc_field_scale (resource result_id, int field_number) - Get the scale of a field
  1906. odbc_field_type=string odbc_field_type (resource result_id, int field_number) - Datatype of a field
  1907. odbc_foreignkeys=resource odbc_foreignkeys (resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table) - Returns a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table
  1908. odbc_free_result=bool odbc_free_result (resource result_id) - Free resources associated with a result
  1909. odbc_gettypeinfo=int odbc_gettypeinfo (resource connection_id [, int data_type]) - Returns a result identifier containing information about data types supported by the data source.
  1910. odbc_longreadlen=int odbc_longreadlen (resource result_id, int length) - Handling of LONG columns
  1911. odbc_next_result=bool odbc_next_result (resource result_id) - Checks if multiple results are available
  1912. odbc_num_fields=int odbc_num_fields (resource result_id) - Number of columns in a result
  1913. odbc_num_rows=int odbc_num_rows (resource result_id) - Number of rows in a result
  1914. odbc_pconnect=resource odbc_pconnect (string dsn, string user, string password [, int cursor_type]) - Open a persistent database connection
  1915. odbc_prepare=resource odbc_prepare (resource connection_id, string query_string) - Prepares a statement for execution
  1916. odbc_primarykeys=resource odbc_primarykeys (resource connection_id, string qualifier, string owner, string table) - Returns a result identifier that can be used to fetch the column names that comprise the primary key for a table
  1917. odbc_procedurecolumns=resource odbc_procedurecolumns (resource connection_id [, string qualifier [, string owner [, string proc [, string column]]]]) - Retrieve information about parameters to procedures
  1918. odbc_procedures=resource odbc_procedures (resource connection_id [, string qualifier [, string owner [, string name]]]) - Get the list of procedures stored in a specific data source. Returns a result identifier containing the information.
  1919. odbc_result=string odbc_result (resource result_id, mixed field) - Get result data
  1920. odbc_result_all=int odbc_result_all (resource result_id [, string format]) - Print result as HTML table
  1921. odbc_rollback=int odbc_rollback (resource connection_id) - Rollback a transaction
  1922. odbc_setoption=int odbc_setoption (resource id, int function, int option, int param) - Adjust ODBC settings. Returns
  1923. odbc_specialcolumns=resource odbc_specialcolumns (resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable) - Returns either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction
  1924. odbc_statistics=resource odbc_statistics (resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy) - Retrieve statistics about a table
  1925. odbc_tableprivileges=int odbc_tableprivileges (resource connection_id [, string qualifier [, string owner [, string name]]]) - Lists tables and the privileges associated with each table
  1926. odbc_tables=int odbc_tables (resource connection_id [, string qualifier [, string owner [, string name [, string types]]]]) - Get the list of table names stored in a specific data source. Returns a result identifier containing the information.
  1927. opendir=resource opendir (string path) - open directory handle
  1928. openlog=int openlog (string ident, int option, int facility) - Open connection to system logger
  1929. openssl_csr_export=bool openssl_csr_export (resource csr, string &out [, bool notext]) - Exports a CSR as a string
  1930. openssl_csr_export_to_file=bool openssl_csr_export_to_file (resource csr, string outfilename [, bool notext]) - Exports a CSR to a file
  1931. openssl_csr_new=bool openssl_csr_new (array dn, resource privkey [, array configargs [, array extraattribs]]) - Generates a CSR
  1932. openssl_csr_sign=resource openssl_csr_sign (mixed csr, mixed cacert, mixed priv_key, int days) - Sign a CSR with another certificate (or itself) and generate a certificate
  1933. openssl_error_string=mixed openssl_error_string (void) - Return openSSL error message
  1934. openssl_free_key=void openssl_free_key (resource key_identifier) - Free key resource
  1935. openssl_get_privatekey=resource openssl_get_privatekey (mixed key [, string passphrase]) - Get a private key
  1936. openssl_get_publickey=resource openssl_get_publickey (mixed certificate) - Extract public key from certificate and prepare it for use
  1937. openssl_open=bool openssl_open (string sealed_data, string open_data, string env_key, mixed priv_key_id) - Open sealed data
  1938. openssl_pkcs7_decrypt=bool openssl_pkcs7_decrypt (string infilename, string outfilename, mixed recipcert [, mixed recipkey]) - Decrypts an S/MIME encrypted message
  1939. openssl_pkcs7_encrypt=bool openssl_pkcs7_encrypt (string infile, string outfile, mixed recipcerts, array headers [, int flags]) - Encrypt an S/MIME message
  1940. openssl_pkcs7_sign=bool openssl_pkcs7_sign (string infilename, string outfilename, mixed signcert, mixed privkey, array headers [, int flags [, string extracerts]]) - sign an S/MIME message
  1941. openssl_pkcs7_verify=bool openssl_pkcs7_verify (string filename, int flags [, string outfilename [, array cainfo [, string extracerts]]]) - Verifies the signature of an S/MIME signed message
  1942. openssl_pkey_export=bool openssl_pkey_export (mixed key, string &out [, string passphrase [, array configargs]]) - Gets an exportable representation of a key into a string
  1943. openssl_pkey_export_to_file=bool openssl_pkey_export_to_file (mixed key, string outfilename [, string passphrase [, array configargs]]) - Gets an exportable representation of a key into a file
  1944. openssl_pkey_get_private=resource openssl_get_privatekey (mixed key [, string passphrase]) - Get a private key
  1945. openssl_pkey_get_public=resource openssl_pkey_get_public (mixed certificate) - Extract public key from certificate and prepare it for use
  1946. openssl_pkey_new=resource openssl_pkey_new ([array configargs]) - Generates a new private key
  1947. openssl_private_decrypt=bool openssl_private_decrypt (string data, string &decrypted, mixed key [, int padding]) - Decrypts data with private key
  1948. openssl_private_encrypt=bool openssl_private_encrypt (string data, string crypted, mixed key [, int padding]) - Encrypts data with private key
  1949. openssl_public_decrypt=bool openssl_public_decrypt (string data, string crypted, resource key [, int padding]) - Decrypts data with public key
  1950. openssl_public_encrypt=bool openssl_public_encrypt (string data, string crypted, mixed key [, int padding]) - Encrypts data with public key
  1951. openssl_seal=int openssl_seal (string data, string sealed_data, array env_keys, array pub_key_ids) - Seal (encrypt) data
  1952. openssl_sign=bool openssl_sign (string data, string signature, mixed priv_key_id) - Generate signature
  1953. openssl_verify=int openssl_verify (string data, string signature, mixed pub_key_id) - Verify signature
  1954. openssl_x509_check_private_key=bool openssl_x509_check_private_key (mixed cert, mixed key) - Checks if a private key corresponds to a certificate
  1955. openssl_x509_checkpurpose=bool openssl_x509_checkpurpose (mixed x509cert, int purpose, array cainfo [, string untrustedfile]) - Verifies if a certificate can be used for a particular purpose
  1956. openssl_x509_export=bool openssl_x509_export (mixed x509, string &output [, bool notext]) - Exports a certificate as a string
  1957. openssl_x509_export_to_file=bool openssl_x509_export_to_file (mixed x509, string outfilename [, bool notext]) - Exports a certificate to file
  1958. openssl_x509_free=void openssl_x509_free (resource x509cert) - Free certificate resource
  1959. openssl_x509_parse=array openssl_x509_parse (mixed x509cert [, bool shortnames]) - Parse an X509 certificate and return the information as an array
  1960. openssl_x509_read=resource openssl_x509_read (mixed x509certdata) - Parse an X.509 certificate and return a resource identifier for it
  1961. ora_bind=bool ora_bind (resource cursor, string PHP_variable_name, string SQL_parameter_name, int length [, int type]) - Binds a PHP variable to an Oracle parameter
  1962. ora_close=bool ora_close (resource cursor) - Closes an Oracle cursor
  1963. ora_columnname=string ora_columnname (resource cursor, int column) - Gets the name of an Oracle result column
  1964. ora_columnsize=int ora_columnsize (resource cursor, int column) - Returns the size of an Oracle result column
  1965. ora_columntype=string ora_columntype (resource cursor, int column) - Gets the type of an Oracle result column
  1966. ora_commit=bool ora_commit (resource conn) - Commit an Oracle transaction
  1967. ora_commitoff=bool ora_commitoff (resource conn) - Disable automatic commit
  1968. ora_commiton=bool ora_commiton (resource conn) - Enable automatic commit
  1969. ora_do=resource ora_do (resource conn, string query) - Parse, Exec, Fetch
  1970. ora_error=string ora_error (resource cursor_or_connection) - Gets an Oracle error message
  1971. ora_errorcode=int ora_errorcode (resource cursor_or_connection) - Gets an Oracle error code
  1972. ora_exec=bool ora_exec (resource cursor) - Execute a parsed statement on an Oracle cursor
  1973. ora_fetch=bool ora_fetch (resource cursor) - Fetch a row of data from a cursor
  1974. ora_fetch_into=int ora_fetch_into (resource cursor, array result [, int flags]) - Fetch a row into the specified result array
  1975. ora_getcolumn=mixed ora_getcolumn (resource cursor, int column) - Get data from a fetched column
  1976. ora_logoff=bool ora_logoff (resource connection) - Close an Oracle connection
  1977. ora_logon=resource ora_logon (string user, string password) - Open an Oracle connection
  1978. ora_numcols=int ora_numcols (resource cursor) - Returns the number of columns
  1979. ora_numrows=int ora_numrows (resource cursor) - Returns the number of rows
  1980. ora_open=resource ora_open (resource connection) - Opens an Oracle cursor
  1981. ora_parse=bool ora_parse (resource cursor, string sql_statement, int defer) - Parse an SQL statement with Oracle
  1982. ora_plogon=resource ora_plogon (string user, string password) - Open a persistent Oracle connection
  1983. ora_rollback=bool ora_rollback (resource connection) - Rolls back a transaction
  1984. ord=int ord (string string) - Return ASCII value of character
  1985. overload=void overload ([string class_name]) - Enable property and method call overloading for a class
  1986. ovrimos_close=void ovrimos_close (int connection) - Closes the connection to ovrimos
  1987. ovrimos_commit=bool ovrimos_commit (int connection_id) - Commits the transaction
  1988. ovrimos_connect=int ovrimos_connect (string host, string db, string user, string password) - Connect to the specified database
  1989. ovrimos_cursor=string ovrimos_cursor (int result_id) - Returns the name of the cursor
  1990. ovrimos_exec=int ovrimos_exec (int connection_id, string query) - Executes an SQL statement
  1991. ovrimos_execute=bool ovrimos_execute (int result_id [, array parameters_array]) - Executes a prepared SQL statement
  1992. ovrimos_fetch_into=bool ovrimos_fetch_into (int result_id, array result_array [, string how [, int rownumber]]) - Fetches a row from the result set
  1993. ovrimos_fetch_row=bool ovrimos_fetch_row (int result_id [, int how [, int row_number]]) - Fetches a row from the result set
  1994. ovrimos_field_len=int ovrimos_field_len (int result_id, int field_number) - Returns the length of the output column
  1995. ovrimos_field_name=string ovrimos_field_name (int result_id, int field_number) - Returns the output column name
  1996. ovrimos_field_num=int ovrimos_field_num (int result_id, string field_name) - Returns the (1-based) index of the output column
  1997. ovrimos_field_type=int ovrimos_field_type (int result_id, int field_number) - Returns the (numeric) type of the output column
  1998. ovrimos_free_result=bool ovrimos_free_result (int result_id) - Frees the specified result_id
  1999. ovrimos_longreadlen=bool ovrimos_longreadlen (int result_id, int length) - Specifies how many bytes are to be retrieved from long datatypes
  2000. ovrimos_num_fields=int ovrimos_num_fields (int result_id) - Returns the number of columns
  2001. ovrimos_num_rows=int ovrimos_num_rows (int result_id) - Returns the number of rows affected by update operations
  2002. ovrimos_prepare=int ovrimos_prepare (int connection_id, string query) - Prepares an SQL statement
  2003. ovrimos_result=string ovrimos_result (int result_id, mixed field) - Retrieves the output column
  2004. ovrimos_result_all=int ovrimos_result_all (int result_id [, string format]) - Prints the whole result set as an HTML table
  2005. ovrimos_rollback=bool ovrimos_rollback (int connection_id) - Rolls back the transaction
  2006. pack=string pack (string format [, mixed args]) - Pack data into binary string.
  2007. parse_ini_file=array parse_ini_file (string filename [, bool process_sections]) - Parse a configuration file
  2008. parse_str=void parse_str (string str [, array arr]) - Parses the string into variables
  2009. parse_url=array parse_url (string url) - Parse a URL and return its components
  2010. passthru=void passthru (string command [, int return_var]) - Execute an external program and display raw output
  2011. pathinfo=array pathinfo (string path) - Returns information about a file path
  2012. pclose=int pclose (resource handle) - Closes process file pointer
  2013. pcntl_exec=bool pcntl_exec (string path [, array args [, array envs]]) - Executes specified program in current process space
  2014. pcntl_fork=int pcntl_fork (void) - Forks the currently running process
  2015. pcntl_signal=bool pcntl_signal (int signo, callback handle [, bool restart_syscalls]) - Installs a signal handler
  2016. pcntl_waitpid=int pcntl_waitpid (int pid, int &status, int options) - Waits on or returns the status of a forked child
  2017. pcntl_wexitstatus=int pcntl_wexitstatus (int status) - Returns the return code of a terminated child
  2018. pcntl_wifexited=int pcntl_wifexited (int status) - Returns TRUE if status code represents a successful exit
  2019. pcntl_wifsignaled=int pcntl_wifsignaled (int status) - Returns TRUE if status code represents a termination due to a signal
  2020. pcntl_wifstopped=int pcntl_wifstopped (int status) - Returns TRUE if child process is currently stopped
  2021. pcntl_wstopsig=int pcntl_wstopsig (int status) - Returns the signal which caused the child to stop
  2022. pcntl_wtermsig=int pcntl_wtermsig (int status) - Returns the signal which caused the child to terminate
  2023. pdf_add_annotation=bool pdf_add_annotation (resource pdfdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open) - Sets annotation for current page
  2024. pdf_add_bookmark=int pdf_add_bookmark (resource pdfdoc, string text [, int parent [, int open]]) - Adds bookmark for current page
  2025. pdf_add_launchlink=bool pdf_add_launchlink (resource pdfdoc, float llx, float lly, float urx, float ury, string filename) - Add a launch annotation for current page
  2026. pdf_add_locallink=bool pdf_add_locallink (resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, int page, string dest) - Add a link annotation for current page
  2027. pdf_add_note=bool pdf_add_note (resource pdfdoc, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open) - Sets annotation for current page
  2028. pdf_add_outline=int pdf_add_outline (resource pdfdoc, string text [, int parent [, int open]]) - Adds bookmark for current page
  2029. pdf_add_pdflink=bool pdf_add_pdflink (resource pdfdoc, float bottom_left_x, float bottom_left_y, float up_right_x, float up_right_y, string filename, int page, string dest) - Adds file link annotation for current page
  2030. pdf_add_thumbnail=bool pdf_add_thumbnail (resource pdfdoc, int image) - Adds thumbnail for current page
  2031. pdf_add_weblink=bool pdf_add_weblink (resource pdfdoc, float lowerleftx, float lowerlefty, float upperrightx, float upperrighty, string url) - Adds weblink for current page
  2032. pdf_arc=bool pdf_arc (resource pdfdoc, float x, float y, float r, float alpha, float beta) - Draws an arc (counterclockwise)
  2033. pdf_arcn=bool pdf_arcn (resource pdfdoc, float x, float y, float r, float alpha, float beta) - Draws an arc (clockwise)
  2034. pdf_attach_file=bool pdf_attach_file (resource pdfdoc, float llx, float lly, float urx, float ury, string filename, string description, string author, string mimetype, string icon) - Adds a file attachment for current page
  2035. pdf_begin_page=bool pdf_begin_page (resource pdfdoc, float width, float height) - Starts new page
  2036. pdf_begin_pattern=int pdf_begin_pattern (resource pdfdoc, float width, float height, float xstep, float ystep, int painttype) - Starts new pattern
  2037. pdf_begin_template=int pdf_begin_template (resource pdfdoc, float width, float height) - Starts new template
  2038. pdf_circle=bool pdf_circle (resource pdfdoc, float x, float y, float r) - Draws a circle
  2039. pdf_clip=bool pdf_clip (resource pdfdoc) - Clips to current path
  2040. pdf_close=bool pdf_close (resource pdfdoc) - Closes a pdf resource
  2041. pdf_close_image=void pdf_close_image (resource pdfdoc, int image) - Closes an image
  2042. pdf_close_pdi=bool pdf_close_pdi (resource pdfdoc, int dochandle) - Close the input PDF document
  2043. pdf_close_pdi_page=bool pdf_close_pdi_page (resource pdfdoc, int pagehandle) - Close the page handle
  2044. pdf_closepath=bool pdf_closepath (resource pdfdoc) - Closes path
  2045. pdf_closepath_fill_stroke=bool pdf_closepath_fill_stroke (resource pdfdoc) - Closes, fills and strokes current path
  2046. pdf_closepath_stroke=bool pdf_closepath_stroke (resource pdfdoc) - Closes path and draws line along path
  2047. pdf_concat=bool pdf_concat (resource pdfdoc, float a, float b, float c, float d, float e, float f) - Concatenate a matrix to the CTM
  2048. pdf_continue_text=bool pdf_continue_text (resource pdfdoc, string text) - Outputs text in next line
  2049. pdf_curveto=bool pdf_curveto (resource pdfdoc, float x1, float y1, float x2, float y2, float x3, float y3) - Draws a curve
  2050. pdf_delete=bool pdf_delete (resource pdfdoc) - Deletes a PDF object
  2051. pdf_end_page=bool pdf_end_page (resource pdfdoc) - Ends a page
  2052. pdf_end_pattern=bool pdf_end_pattern (resource pdfdoc) - Finish pattern
  2053. pdf_end_template=bool pdf_end_template (resource pdfdoc) - Finish template
  2054. pdf_fill=bool pdf_fill (resource pdfdoc) - Fills current path
  2055. pdf_fill_stroke=bool pdf_fill_stroke (resource pdfdoc) - Fills and strokes current path
  2056. pdf_findfont=int pdf_findfont (resource pdfdoc, string fontname, string encoding [, int embed]) - Prepare font for later use with
  2057. pdf_get_buffer=string pdf_get_buffer (resource pdfdoc) - Fetch the buffer containig the generated PDF data.
  2058. pdf_get_font=float pdf_get_font (resource pdfdoc, string key [, float modifier]) - Gets certain numerical value
  2059. pdf_get_fontname=string pdf_get_fontname (resource pdfdoc, string key [, float modifier]) - Gets certain parameters
  2060. pdf_get_fontsize=float pdf_get_fontsize (resource pdfdoc, string key [, float modifier]) - Gets certain numerical value
  2061. pdf_get_image_height=float pdf_get_image_height (resource pdfdoc, string key [, float modifier]) - Gets certain numerical value
  2062. pdf_get_image_width=float pdf_get_value (resource pdfdoc, string key [, float modifier]) - Gets certain numerical value
  2063. pdf_get_majorversion=int pdf_get_majorversion (void) - Returns the major version number of the PDFlib
  2064. pdf_get_minorversion=int pdf_get_minorversion (void) - Returns the minor version number of the PDFlib
  2065. pdf_get_parameter=string pdf_get_parameter (resource pdfdoc, string key [, float modifier]) - Gets certain parameters
  2066. pdf_get_pdi_parameter=string pdf_get_pdi_parameter (resource pdfdoc, string key, int document, int page, int index) - Get some PDI string parameters
  2067. pdf_get_pdi_value=string pdf_get_pdi_value (resource pdfdoc, string key, int doc, int page, int index) - Gets some PDI numerical parameters
  2068. pdf_get_value=float pdf_get_value (resource pdfdoc, string key [, float modifier]) - Gets certain numerical value
  2069. pdf_initgraphics=bool pdf_initgraphics (resource pdfdoc) - Resets graphic state
  2070. pdf_lineto=bool pdf_lineto (resource pdfdoc, float x, float y) - Draws a line
  2071. pdf_makespotcolor=bool pdf_makespotcolor (resource pdfdoc, string spotname) - Makes a spotcolor
  2072. pdf_moveto=bool pdf_moveto (resource pdfdoc, float x, float y) - Sets current point
  2073. pdf_new=resource pdf_new () - Creates a new pdf resource
  2074. pdf_open=resource pdf_open () - Creates a new pdf resource
  2075. pdf_open_ccitt=int pdf_open_CCITT (resource pdfdoc, string filename, int width, int height, int BitReverse, int k, int Blackls1) - Opens a new image file with raw CCITT data
  2076. pdf_open_file=bool pdf_open_file (resource pdfdoc [, string filename]) - Opens a new pdf object
  2077. pdf_open_gif=int pdf_open_image (resource PDF-document, string imagetype, string source, string data, long length, int width, int height, int components, int bpc, string params) - Versatile function for images
  2078. pdf_open_image=int pdf_open_image (resource PDF-document, string imagetype, string source, string data, long length, int width, int height, int components, int bpc, string params) - Versatile function for images
  2079. pdf_open_image_file=int pdf_open_image_file (resource pdfdoc, string imagetype, string filename [, string stringparam [, string intparam]]) - Reads an image from a file
  2080. pdf_open_jpeg=int pdf_open_image (resource PDF-document, string imagetype, string source, string data, long length, int width, int height, int components, int bpc, string params) - Versatile function for images
  2081. pdf_open_memory_image=int pdf_open_memory_image (resource pdfdoc, resource image) - Opens an image created with PHP's image functions
  2082. pdf_open_pdi=int pdf_open_pdi (resource pdfdoc, string filename, string stringparam, int intparam) - Opens a PDF file
  2083. pdf_open_pdi_page=int pdf_open_pdi_page (resource pdfdoc, int dochandle, int pagenumber, string pagelabel) - Prepare a page
  2084. pdf_open_png=int pdf_open_image (resource PDF-document, string imagetype, string source, string data, long length, int width, int height, int components, int bpc, string params) - Versatile function for images
  2085. pdf_open_tiff=int pdf_open_image (resource PDF-document, string imagetype, string source, string data, long length, int width, int height, int components, int bpc, string params) - Versatile function for images
  2086. pdf_place_image=bool pdf_place_image (resource pdfdoc, int image, float x, float y, float scale) - Places an image on the page
  2087. pdf_place_pdi_page=bool pdf_place_pdi_page (resource pdfdoc, int page, float x, float y, float sx, float sy) - Places an image on the page
  2088. pdf_rect=bool pdf_rect (resource pdfdoc, float x, float y, float width, float height) - Draws a rectangle
  2089. pdf_restore=bool pdf_restore (resource pdfdoc) - Restores formerly saved environment
  2090. pdf_rotate=bool pdf_rotate (resource pdfdoc, float phi) - Sets rotation
  2091. pdf_save=bool pdf_save (resource pdfdoc) - Saves the current environment
  2092. pdf_scale=bool pdf_scale (resource pdfdoc, float x-scale, float y-scale) - Sets scaling
  2093. pdf_set_border_color=bool pdf_set_border_color (resource pdfdoc, float red, float green, float blue) - Sets color of border around links and annotations
  2094. pdf_set_border_dash=bool pdf_set_border_dash (resource pdfdoc, float black, float white) - Sets dash style of border around links and annotations
  2095. pdf_set_border_style=bool pdf_set_border_style (resource pdfdoc, string style, float width) - Sets style of border around links and annotations
  2096. pdf_set_char_spacing=bool pdf_set_value (resource pdfdoc, string key, float value) - Sets certain numerical value
  2097. pdf_set_duration=bool pdf_set_value (resource pdfdoc, string key, float value) - Sets certain numerical value
  2098. pdf_set_font=int pdf_findfont (resource pdfdoc, string fontname, string encoding [, int embed]) - Prepare font for later use with pdf_setfont()
  2099. pdf_set_horiz_scaling=bool pdf_set_value (resource pdfdoc, string key, float value) - Sets certain numerical value
  2100. pdf_set_info=bool pdf_set_info (resource pdfdoc, string key, string value) - Fills a field of the document information
  2101. pdf_set_parameter=bool pdf_set_parameter (resource pdfdoc, string key, string value) - Sets certain parameters
  2102. pdf_set_text_pos=bool pdf_set_text_pos (resource pdfdoc, float x, float y) - Sets text position
  2103. pdf_set_value=bool pdf_set_value (resource pdfdoc, string key, float value) - Sets certain numerical value
  2104. pdf_setcolor=bool pdf_setcolor (resource pdfdoc, string type, string colorspace, float c1 [, float c2 [, float c3 [, float c4]]]) - Sets fill and stroke color
  2105. pdf_setdash=bool pdf_setdash (resource pdfdoc, float b, float w) - Sets dash pattern
  2106. pdf_setflat=bool pdf_setflat (resource pdfdoc, float flatness) - Sets flatness
  2107. pdf_setfont=bool pdf_setfont (resource pdfdoc, int font, float size) - Set the current font
  2108. pdf_setgray=bool pdf_setgray (resource pdfdoc, float gray) - Sets drawing and filling color to gray value
  2109. pdf_setgray_fill=bool pdf_setgray_fill (resource pdfdoc, float gray) - Sets filling color to gray value
  2110. pdf_setgray_stroke=bool pdf_setgray_stroke (resource pdfdoc, float gray) - Sets drawing color to gray value
  2111. pdf_setlinecap=void pdf_setlinecap (resource pdfdoc, int linecap) - Sets linecap parameter
  2112. pdf_setlinejoin=bool pdf_setlinejoin (resource pdfdoc, int value) - Sets linejoin parameter
  2113. pdf_setlinewidth=void pdf_setlinewidth (resource pdfdoc, float width) - Sets line width
  2114. pdf_setmatrix=bool pdf_setmatrix (resource pdfdoc, float a, float b, float c, float d, float e, float f) - Sets current transformation matrix
  2115. pdf_setmiterlimit=bool pdf_setmiterlimit (resource pdfdoc, float miter) - Sets miter limit
  2116. pdf_setpolydash=bool pdf_setdash (resource pdfdoc, float b, float w) - Sets dash pattern
  2117. pdf_setrgbcolor=bool pdf_setrgbcolor (resource pdfdoc, float red_value, float green_value, float blue_value) - Sets drawing and filling color to rgb color value
  2118. pdf_setrgbcolor_fill=bool pdf_setrgbcolor_fill (resource pdfdoc, float red_value, float green_value, float blue_value) - Sets filling color to rgb color value
  2119. pdf_setrgbcolor_stroke=bool pdf_setrgbcolor_stroke (resource pdfdoc, float red_value, float green_value, float blue_value) - Sets drawing color to rgb color value
  2120. pdf_show=bool pdf_show (resource pdfdoc, string text) - Output text at current position
  2121. pdf_show_boxed=int pdf_show_boxed (resource pdfdoc, string text, float left, float top, float width, float height, string mode [, string feature]) - Output text in a box
  2122. pdf_show_xy=bool pdf_show_xy (resource pdfdoc, string text, float x, float y) - Output text at given position
  2123. pdf_skew=bool pdf_skew (resource pdfdoc, float alpha, float beta) - Skews the coordinate system
  2124. pdf_stringwidth=float pdf_stringwidth (resource pdfdoc, string text [, int font [, float size]]) - Returns width of text using current font
  2125. pdf_stroke=bool pdf_stroke (resource pdfdoc) - Draws line along path
  2126. pdf_translate=bool pdf_translate (resource pdfdoc, float tx, float ty) - Sets origin of coordinate system
  2127. pfpro_cleanup=void pfpro_cleanup (void) - Shuts down the Payflow Pro library
  2128. pfpro_init=void pfpro_init (void) - Initialises the Payflow Pro library
  2129. pfpro_process=array pfpro_process (array parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]]) - Process a transaction with Payflow Pro
  2130. pfpro_process_raw=string pfpro_process_raw (string parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]]) - Process a raw transaction with Payflow Pro
  2131. pfpro_version=string pfpro_version (void) - Returns the version of the Payflow Pro software
  2132. pfsockopen=int pfsockopen (string hostname, int port [, int errno [, string errstr [, int timeout]]]) - Open persistent Internet or Unix domain socket connection
  2133. pg_affected_rows=int pg_affected_rows (resource result) - Returns number of affected records (tuples)
  2134. pg_cancel_query=bool pg_cancel_query (resource connection) - Cancel asynchronous query
  2135. pg_client_encoding=string pg_client_encoding ([resource connection]) - Gets the client encoding
  2136. pg_close=bool pg_close (resource connection) - Closes a PostgreSQL connection
  2137. pg_connect=resource pg_connect (string connection_string) - Open a PostgreSQL connection
  2138. pg_connection_busy=bool pg_connection_busy (resource connection) - Get connection is busy or not
  2139. pg_connection_reset=bool pg_connection_reset (resource connection) - Reset connection (reconnect)
  2140. pg_connection_status=int pg_connection_status (resource connection) - Get connection status
  2141. pg_convert=array pg_convert (resource connection, string table_name, array assoc_array [, int options]) - Convert associative array value into suitable for SQL statement.
  2142. pg_copy_from=bool pg_copy_from (resource connection, string table_name, array rows [, string delimiter [, string null_as]]) - Insert records into a table from an array
  2143. pg_copy_to=array pg_copy_to (resource connection, string table_name [, string delimiter [, string null_as]]) - Copy a table to an array
  2144. pg_dbname=string pg_dbname (resource connection) - Get the database name
  2145. pg_delete=mixed pg_delete (resource connection, string table_name, array assoc_array [, int options]) - Deletes records.
  2146. pg_end_copy=bool pg_end_copy ([resource connection]) - Sync with PostgreSQL backend
  2147. pg_escape_bytea=string pg_escape_bytea (string data) - Escape binary for bytea type
  2148. pg_escape_string=string pg_escape_string (string data) - Escape string for text/char type
  2149. pg_fetch_all=array pg_fetch_all (resource result) - Fetches all rows from a result as an array
  2150. pg_fetch_array=array pg_fetch_array (resource result [, int row [, int result_type]]) - Fetch a row as an array
  2151. pg_fetch_assoc=array pg_fetch_assoc (resource result [, int row]) - Fetch a row as an associative array
  2152. pg_fetch_object=object pg_fetch_object (resource result [, int row [, int result_type]]) - Fetch a row as an object
  2153. pg_fetch_result=mixed pg_fetch_result (resource result, int row, mixed field) - Returns values from a result resource
  2154. pg_fetch_row=array pg_fetch_row (resource result, int row) - Get a row as an enumerated array
  2155. pg_field_is_null=int pg_field_is_null (resource result, int row, mixed field) - Test if a field is
  2156. pg_field_name=string pg_field_name (resource result, int field_number) - Returns the name of a field
  2157. pg_field_num=int pg_field_num (resource result, string field_name) - Returns the field number of the named field
  2158. pg_field_prtlen=int pg_field_prtlen (resource result, int row_number, string field_name) - Returns the printed length
  2159. pg_field_size=int pg_field_size (resource result, int field_number) - Returns the internal storage size of the named field
  2160. pg_field_type=string pg_field_type (resource result, int field_number) - Returns the type name for the corresponding field number
  2161. pg_free_result=bool pg_free_result (resource result) - Free result memory
  2162. pg_get_notify=array pg_get_notify (resource connection [, int result_type]) - Ping database connection
  2163. pg_get_pid=int pg_get_pid (resource connection) - Ping database connection
  2164. pg_get_result=resource pg_get_result ([resource connection]) - Get asynchronous query result
  2165. pg_host=string pg_host (resource connection) - Returns the host name associated with the connection
  2166. pg_insert=bool pg_insert (resource connection, string table_name, array assoc_array [, int options]) - Insert array into table.
  2167. pg_last_error=string pg_last_error ([resource connection]) - Get the last error message string of a connection
  2168. pg_last_notice=string pg_last_notice (resource connection) - Returns the last notice message from PostgreSQL server
  2169. pg_last_oid=int pg_last_oid (resource result) - Returns the last object's oid
  2170. pg_lo_close=bool pg_lo_close (resource large_object) - Close a large object
  2171. pg_lo_create=int pg_lo_create (resource connection) - Create a large object
  2172. pg_lo_export=bool pg_lo_export (int oid, string pathname [, resource connection]) - Export a large object to file
  2173. pg_lo_import=int pg_lo_import ([resource connection, string pathname]) - Import a large object from file
  2174. pg_lo_open=resource pg_lo_open (resource connection, int oid, string mode) - Open a large object
  2175. pg_lo_read=string pg_lo_read (resource large_object, int len) - Read a large object
  2176. pg_lo_read_all=int pg_lo_read_all (resource large_object) - Reads an entire large object and send straight to browser
  2177. pg_lo_seek=bool pg_lo_seek (resource large_object, int offset [, int whence]) - Seeks position of large object
  2178. pg_lo_tell=int pg_lo_tell (resource large_object) - Returns current position of large object
  2179. pg_lo_unlink=bool pg_lo_unlink (resource connection, int oid) - Delete a large object
  2180. pg_lo_write=int pg_lo_write (resource large_object, string data) - Write a large object
  2181. pg_meta_data=array pg_meta_data (resource connection, string table_name) - Get meta data for table.
  2182. pg_num_fields=int pg_num_fields (resource result) - Returns the number of fields
  2183. pg_num_rows=int pg_num_rows (resource result) - Returns the number of rows
  2184. pg_options=string pg_options (resource connection) - Get the options associated with the connection
  2185. pg_pconnect=resource pg_pconnect (string connection_string) - Open a persistent PostgreSQL connection
  2186. pg_ping=bool pg_ping (resource connection) - Ping database connection
  2187. pg_port=int pg_port (resource connection) - Return the port number associated with the connection
  2188. pg_put_line=bool pg_put_line ([resource connection, string data]) - Send a NULL-terminated string to PostgreSQL backend
  2189. pg_query=resource pg_query (resource connection, string query) - Execute a query
  2190. pg_result_error=string pg_result_error (resource result) - Get error message associated with result
  2191. pg_result_seek=array pg_result_seek (resource result, int offset) - Set internal row offset in result resource
  2192. pg_result_status=int pg_result_status (resource result) - Get status of query result
  2193. pg_select=array pg_select (resource connection, string table_name, array assoc_array [, int options]) - Select records.
  2194. pg_send_query=bool pg_send_query (resource connection, string query) - Sends asynchronous query
  2195. pg_set_client_encoding=int pg_set_client_encoding ([resource connection, string encoding]) - Set the client encoding
  2196. pg_trace=bool pg_trace (string pathname [, string mode [, resource connection]]) - Enable tracing a PostgreSQL connection
  2197. pg_tty=string pg_tty (resource connection) - Return the tty name associated with the connection
  2198. pg_unescape_bytea=string pg_unescape_bytea (string data) - Escape binary for bytea type
  2199. pg_untrace=bool pg_untrace ([resource connection]) - Disable tracing of a PostgreSQL connection
  2200. pg_update=mixed pg_update (resource connection, string table_name, array data, array condition [, int options]) - Update table.
  2201. php_ini_scanned_files=string php_ini_scanned_files (void) - Return a list of .ini files parsed from the additional ini dir
  2202. php_logo_guid=string php_logo_guid (void) - Gets the logo guid
  2203. php_sapi_name=string php_sapi_name (void) - Returns the type of interface between web server and PHP
  2204. php_uname=string php_uname (void) - Returns information about the operating system PHP was built on
  2205. phpcredits=void phpcredits ([int flag]) - Prints out the credits for PHP
  2206. phpinfo=int phpinfo ([int what]) - Outputs lots of PHP information
  2207. phpversion=string phpversion (void) - Gets the current PHP version
  2208. pi=float pi (void) - Get value of pi
  2209. png2wbmp=int png2wbmp (string pngname, string wbmpname, int d_height, int d_width, int threshold) - Convert PNG image file to WBMP image file
  2210. popen=resource popen (string command, string mode) - Opens process file pointer
  2211. pos=mixed pos (array array) - Get the current element from an array
  2212. posix_ctermid=string posix_ctermid (void) - Get path name of controlling terminal
  2213. posix_get_last_error=int posix_get_last_error (void) - Retrieve the error number set by the last posix function that failed.
  2214. posix_getcwd=string posix_getcwd (void) - Pathname of current directory
  2215. posix_getegid=int posix_getegid (void) - Return the effective group ID of the current process
  2216. posix_geteuid=int posix_geteuid (void) - Return the effective user ID of the current process
  2217. posix_getgid=int posix_getgid (void) - Return the real group ID of the current process
  2218. posix_getgrgid=array posix_getgrgid (int gid) - Return info about a group by group id
  2219. posix_getgrnam=array posix_getgrnam (string name) - Return info about a group by name
  2220. posix_getgroups=array posix_getgroups (void) - Return the group set of the current process
  2221. posix_getlogin=string posix_getlogin (void) - Return login name
  2222. posix_getpgid=int posix_getpgid (int pid) - Get process group id for job control
  2223. posix_getpgrp=int posix_getpgrp (void) - Return the current process group identifier
  2224. posix_getpid=int posix_getpid (void) - Return the current process identifier
  2225. posix_getppid=int posix_getppid (void) - Return the parent process identifier
  2226. posix_getpwnam=array posix_getpwnam (string username) - Return info about a user by username
  2227. posix_getpwuid=array posix_getpwuid (int uid) - Return info about a user by user id
  2228. posix_getrlimit=array posix_getrlimit (void) - Return info about system resource limits
  2229. posix_getsid=int posix_getsid (int pid) - Get the current sid of the process
  2230. posix_getuid=int posix_getuid (void) - Return the real user ID of the current process
  2231. posix_isatty=bool posix_isatty (int fd) - Determine if a file descriptor is an interactive terminal
  2232. posix_kill=bool posix_kill (int pid, int sig) - Send a signal to a process
  2233. posix_mkfifo=bool posix_mkfifo (string pathname, int mode) - Create a fifo special file (a named pipe)
  2234. posix_setegid=bool posix_setegid (int gid) - Set the effective GID of the current process
  2235. posix_seteuid=bool posix_seteuid (int uid) - Set the effective UID of the current process
  2236. posix_setgid=bool posix_setgid (int gid) - Set the GID of the current process
  2237. posix_setpgid=int posix_setpgid (int pid, int pgid) - set process group id for job control
  2238. posix_setsid=int posix_setsid (void) - Make the current process a session leader
  2239. posix_setuid=bool posix_setuid (int uid) - Set the UID of the current process
  2240. posix_strerror=string posix_strerror (int errno) - Retrieve the system error message associated with the given errno.
  2241. posix_times=array posix_times (void) - Get process times
  2242. posix_ttyname=string posix_ttyname (int fd) - Determine terminal device name
  2243. posix_uname=array posix_uname (void) - Get system name
  2244. pow=number pow (number base, number exp) - Exponential expression
  2245. preg_grep=array preg_grep (string pattern, array input) - Return array entries that match the pattern
  2246. preg_match=int preg_match (string pattern, string subject [, array matches [, int flags]]) - Perform a regular expression match
  2247. preg_match_all=int preg_match_all (string pattern, string subject, array matches [, int flags]) - Perform a global regular expression match
  2248. preg_quote=string preg_quote (string str [, string delimiter]) - Quote regular expression characters
  2249. preg_replace=mixed preg_replace (mixed pattern, mixed replacement, mixed subject [, int limit]) - Perform a regular expression search and replace
  2250. preg_replace_callback=mixed preg_replace_callback (mixed pattern, callback callback, mixed subject [, int limit]) - Perform a regular expression search and replace using a callback
  2251. preg_split=array preg_split (string pattern, string subject [, int limit [, int flags]]) - Split string by a regular expression
  2252. prev=mixed prev (array array) - Rewind the internal array pointer
  2253. print=int print (string arg) - Output a string
  2254. print_r=bool print_r (mixed expression [, bool return]) - Prints human-readable information about a variable
  2255. printer_abort=void printer_abort (resource handle) - Deletes the printer's spool file
  2256. printer_close=void printer_close (resource handle) - Close an open printer connection
  2257. printer_create_brush=mixed printer_create_brush (int style, string color) - Create a new brush
  2258. printer_create_dc=void printer_create_dc (resource handle) - Create a new device context
  2259. printer_create_font=mixed printer_create_font (string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientaton) - Create a new font
  2260. printer_create_pen=mixed printer_create_pen (int style, int width, string color) - Create a new pen
  2261. printer_delete_brush=bool printer_delete_brush (resource handle) - Delete a brush
  2262. printer_delete_dc=bool printer_delete_dc (resource handle) - Delete a device context
  2263. printer_delete_font=bool printer_delete_font (resource handle) - Delete a font
  2264. printer_delete_pen=bool printer_delete_pen (resource handle) - Delete a pen
  2265. printer_draw_bmp=void printer_draw_bmp (resource handle, string filename, int x, int y) - Draw a bmp
  2266. printer_draw_chord=void printer_draw_chord (resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad_x, int rad_y, int rad_x1, int rad_y1) - Draw a chord
  2267. printer_draw_elipse=void printer_draw_elipse (resource handle, int ul_x, int ul_y, int lr_x, int lr_y) - Draw an ellipse
  2268. printer_draw_line=void printer_draw_line (resource printer_handle, int from_x, int from_y, int to_x, int to_y) - Draw a line
  2269. printer_draw_pie=void printer_draw_pie (resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad1_x, int rad1_y, int rad2_x, int rad2_y) - Draw a pie
  2270. printer_draw_rectangle=void printer_draw_rectangle (resource handle, int ul_x, int ul_y, int lr_x, int lr_y) - Draw a rectangle
  2271. printer_draw_roundrect=void printer_draw_roundrect (resource handle, int ul_x, int ul_y, int lr_x, int lr_y, int width, int height) - Draw a rectangle with rounded corners
  2272. printer_draw_text=void printer_draw_text (resource printer_handle, string text, int x, int y) - Draw text
  2273. printer_end_doc=bool printer_end_doc (resource handle) - Close document
  2274. printer_end_page=bool printer_end_page (resource handle) - Close active page
  2275. printer_get_option=mixed printer_get_option (resource handle, string option) - Retrieve printer configuration data
  2276. printer_list=array printer_list (int enumtype [, string name [, int level]]) - Return an array of printers attached to the server
  2277. printer_logical_fontheight=int printer_logical_fontheight (resource handle, int height) - Get logical font height
  2278. printer_open=mixed printer_open ([string devicename]) - Open connection to a printer
  2279. printer_select_brush=void printer_select_brush (resource printer_handle, resource brush_handle) - Select a brush
  2280. printer_select_font=void printer_select_font (resource printer_handle, resource font_handle) - Select a font
  2281. printer_select_pen=void printer_select_pen (resource printer_handle, resource pen_handle) - Select a pen
  2282. printer_set_option=bool printer_set_option (resource handle, int option, mixed value) - Configure the printer connection
  2283. printer_start_doc=bool printer_start_doc (resource handle [, string document]) - Start a new document
  2284. printer_start_page=bool printer_start_page (resource handle) - Start a new page
  2285. printer_write=bool printer_write (resource handle, string content) - Write data to the printer
  2286. printf=void printf (string format [, mixed args]) - Output a formatted string
  2287. proc_close=int proc_close (resource process) - Close a process opened by
  2288. proc_get_status=int proc_get_status (resource process) - Get information about a process opened by
  2289. proc_nice=bool proc_nice (int priority) - Change the priority of the current process
  2290. proc_open=resource proc_open (string cmd, array descriptorspec, array pipes) - Execute a command and open file pointers for input/output
  2291. proc_terminate=int proc_terminate (resource process [, int signal]) - kills a process opened by proc_open
  2292. pspell_add_to_personal=int pspell_add_to_personal (int dictionary_link, string word) - Add the word to a personal wordlist
  2293. pspell_add_to_session=int pspell_add_to_session (int dictionary_link, string word) - Add the word to the wordlist in the current session
  2294. pspell_check=bool pspell_check (int dictionary_link, string word) - Check a word
  2295. pspell_clear_session=int pspell_clear_session (int dictionary_link) - Clear the current session
  2296. pspell_config_create=int pspell_config_create (string language [, string spelling [, string jargon [, string encoding]]]) - Create a config used to open a dictionary
  2297. pspell_config_ignore=int pspell_config_ignore (int dictionary_link, int n) - Ignore words less than N characters long
  2298. pspell_config_mode=int pspell_config_mode (int dictionary_link, int mode) - Change the mode number of suggestions returned
  2299. pspell_config_personal=int pspell_config_personal (int dictionary_link, string file) - Set a file that contains personal wordlist
  2300. pspell_config_repl=int pspell_config_repl (int dictionary_link, string file) - Set a file that contains replacement pairs
  2301. pspell_config_runtogether=int pspell_config_runtogether (int dictionary_link, bool flag) - Consider run-together words as valid compounds
  2302. pspell_config_save_repl=int pspell_config_save_repl (int dictionary_link, bool flag) - Determine whether to save a replacement pairs list along with the wordlist
  2303. pspell_new=int pspell_new (string language [, string spelling [, string jargon [, string encoding [, int mode]]]]) - Load a new dictionary
  2304. pspell_new_config=int pspell_new_config (int config) - Load a new dictionary with settings based on a given config
  2305. pspell_new_personal=int pspell_new_personal (string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]]) - Load a new dictionary with personal wordlist
  2306. pspell_save_wordlist=int pspell_save_wordlist (int dictionary_link) - Save the personal wordlist to a file
  2307. pspell_store_replacement=int pspell_store_replacement (int dictionary_link, string misspelled, string correct) - Store a replacement pair for a word
  2308. pspell_suggest=array pspell_suggest (int dictionary_link, string word) - Suggest spellings of a word
  2309. putenv=void putenv (string setting) - Sets the value of an environment variable
  2310. qdom_error=string qdom_error (void) - Returns the error string from the last QDOM operation or FALSE if no errors occured
  2311. qdom_tree=object qdom_tree (string) - creates a tree of an xml string
  2312. quoted_printable_decode=string quoted_printable_decode (string str) - Convert a quoted-printable string to an 8 bit string
  2313. quotemeta=string quotemeta (string str) - Quote meta characters
  2314. rad2deg=float rad2deg (float number) - Converts the radian number to the equivalent number in degrees
  2315. rand=int rand ([int min, int max]) - Generate a random value
  2316. range=array range (int low, int high [, int step]) - Create an array containing a range of elements
  2317. rawurldecode=string rawurldecode (string str) - Decode URL-encoded strings
  2318. rawurlencode=string rawurlencode (string str) - URL-encode according to RFC 1738
  2319. read_exif_data=array read_exif_data (string filename [, string sections [, bool arrays [, bool thumbnail]]]) - Reads the EXIF headers from JPEG or TIFF. This way you can read meta data generated by digital cameras.
  2320. readdir=string readdir (resource dir_handle) - read entry from directory handle
  2321. readfile=int readfile (string filename [, bool use_include_path [, resource context]]) - Outputs a file
  2322. readgzfile=int readgzfile (string filename [, int use_include_path]) - Output a gz-file
  2323. readline=string readline ([string prompt]) - Reads a line
  2324. readline_add_history=void readline_add_history (string line) - Adds a line to the history
  2325. readline_clear_history=bool readline_clear_history (void) - Clears the history
  2326. readline_completion_function=bool readline_completion_function (string line) - Registers a completion function
  2327. readline_info=mixed readline_info ([string varname [, string newvalue]]) - Gets/sets various internal readline variables
  2328. readline_list_history=array readline_list_history (void) - Lists the history
  2329. readline_read_history=bool readline_read_history (string filename) - Reads the history
  2330. readline_write_history=bool readline_write_history (string filename) - Writes the history
  2331. readlink=string readlink (string path) - Returns the target of a symbolic link
  2332. realpath=string realpath (string path) - Returns canonicalized absolute pathname
  2333. recode=string recode (string request, string string) - Recode a string according to a recode request
  2334. recode_file=bool recode_file (string request, resource input, resource output) - Recode from file to file according to recode request
  2335. recode_string=string recode_string (string request, string string) - Recode a string according to a recode request
  2336. register_shutdown_function=void register_shutdown_function (callback function) - Register a function for execution on shutdown
  2337. register_tick_function=void register_tick_function (callback function [, mixed arg]) - Register a function for execution on each tick
  2338. rename=bool rename (string oldname, string newname) - Renames a file
  2339. reset=mixed reset (array array) - Set the internal pointer of an array to its first element
  2340. restore_error_handler=void restore_error_handler (void) - Restores the previous error handler function
  2341. restore_include_path=void restore_include_path (void) - Restores the value of the include_path configuration option
  2342. rewind=bool rewind (resource handle) - Rewind the position of a file pointer
  2343. rewinddir=void rewinddir (resource dir_handle) - rewind directory handle
  2344. rmdir=bool rmdir (string dirname) - Removes directory
  2345. round=float round (float val [, int precision]) - Rounds a float
  2346. rsort=void rsort (array array [, int sort_flags]) - Sort an array in reverse order
  2347. rtrim=string rtrim (string str [, string charlist]) - Strip whitespace from the end of a string
  2348. scandir=array scandir (string directory [, int sorting_order]) - List files and directories inside the specified path
  2349. sem_acquire=bool sem_acquire (int sem_identifier) - Acquire a semaphore
  2350. sem_get=int sem_get (int key [, int max_acquire [, int perm]]) - Get a semaphore id
  2351. sem_release=bool sem_release (int sem_identifier) - Release a semaphore
  2352. sem_remove=bool sem_remove (int sem_identifier) - Remove a semaphore
  2353. serialize=string serialize (mixed value) - Generates a storable representation of a value
  2354. sesam_affected_rows=int sesam_affected_rows (string result_id) - Get number of rows affected by an immediate query
  2355. sesam_commit=bool sesam_commit (void) - Commit pending updates to the SESAM database
  2356. sesam_connect=bool sesam_connect (string catalog, string schema, string user) - Open SESAM database connection
  2357. sesam_diagnostic=array sesam_diagnostic (void) - Return status information for last SESAM call
  2358. sesam_disconnect=bool sesam_disconnect (void) - Detach from SESAM connection
  2359. sesam_errormsg=string sesam_errormsg (void) - Returns error message of last SESAM call
  2360. sesam_execimm=string sesam_execimm (string query) - Execute an "immediate" SQL-statement
  2361. sesam_fetch_array=array sesam_fetch_array (string result_id [, int whence [, int offset]]) - Fetch one row as an associative array
  2362. sesam_fetch_result=mixed sesam_fetch_result (string result_id [, int max_rows]) - Return all or part of a query result
  2363. sesam_fetch_row=array sesam_fetch_row (string result_id [, int whence [, int offset]]) - Fetch one row as an array
  2364. sesam_field_array=array sesam_field_array (string result_id) - Return meta information about individual columns in a result
  2365. sesam_field_name=int sesam_field_name (string result_id, int index) - Return one column name of the result set
  2366. sesam_free_result=int sesam_free_result (string result_id) - Releases resources for the query
  2367. sesam_num_fields=int sesam_num_fields (string result_id) - Return the number of fields/columns in a result set
  2368. sesam_query=string sesam_query (string query [, bool scrollable]) - Perform a SESAM SQL query and prepare the result
  2369. sesam_rollback=bool sesam_rollback (void) - Discard any pending updates to the SESAM database
  2370. sesam_seek_row=bool sesam_seek_row (string result_id, int whence [, int offset]) - Set scrollable cursor mode for subsequent fetches
  2371. sesam_settransaction=bool sesam_settransaction (int isolation_level, int read_only) - Set SESAM transaction parameters
  2372. session_cache_expire=int session_cache_expire ([int new_cache_expire]) - Return current cache expire
  2373. session_cache_limiter=string session_cache_limiter ([string cache_limiter]) - Get and/or set the current cache limiter
  2374. session_decode=bool session_decode (string data) - Decodes session data from a string
  2375. session_destroy=bool session_destroy (void) - Destroys all data registered to a session
  2376. session_encode=string session_encode (void) - Encodes the current session data as a string
  2377. session_get_cookie_params=array session_get_cookie_params (void) - Get the session cookie parameters
  2378. session_id=string session_id ([string id]) - Get and/or set the current session id
  2379. session_is_registered=bool session_is_registered (string name) - Find out whether a global variable is registered in a session
  2380. session_module_name=string session_module_name ([string module]) - Get and/or set the current session module
  2381. session_name=string session_name ([string name]) - Get and/or set the current session name
  2382. session_regenerate_id=bool session_regenerate_id (void) - Update the current session id with a newly generated one
  2383. session_register=bool session_register (mixed name [, mixed ...]) - Register one or more global variables with the current session
  2384. session_save_path=string session_save_path ([string path]) - Get and/or set the current session save path
  2385. session_set_cookie_params=void session_set_cookie_params (int lifetime [, string path [, string domain [, bool secure]]]) - Set the session cookie parameters
  2386. session_set_save_handler=bool session_set_save_handler (string open, string close, string read, string write, string destroy, string gc) - Sets user-level session storage functions
  2387. session_start=bool session_start (void) - Initialize session data
  2388. session_unregister=bool session_unregister (string name) - Unregister a global variable from the current session
  2389. session_unset=void session_unset (void) - Free all session variables
  2390. session_write_close=void session_write_close (void) - Write session data and end session
  2391. set_error_handler=string set_error_handler (callback error_handler) - Sets a user-defined error handler function.
  2392. set_file_buffer=int set_file_buffer (resource stream, int buffer) - Sets file buffering on the given stream
  2393. set_include_path=string set_include_path (string new_include_path) - Sets the include_path configuration option
  2394. set_magic_quotes_runtime=bool set_magic_quotes_runtime (int new_setting) - Sets the current active configuration setting of magic_quotes_runtime
  2395. set_time_limit=void set_time_limit (int seconds) - Limits the maximum execution time
  2396. setcookie=bool setcookie (string name [, string value [, int expire [, string path [, string domain [, int secure]]]]]) - Send a cookie
  2397. setlocale=string setlocale (mixed category, string locale [, string ...]) - Set locale information
  2398. settype=bool settype (mixed var, string type) - Set the type of a variable
  2399. sha1=string sha1 (string str [, bool raw_output]) - Calculate the sha1 hash of a string
  2400. sha1_file=string sha1_file (string filename [, bool raw_output]) - Calculate the sha1 hash of a file
  2401. shell_exec=string shell_exec (string cmd) - Execute command via shell and return complete output as string
  2402. shm_attach=int shm_attach (int key [, int memsize [, int perm]]) - Creates or open a shared memory segment
  2403. shm_detach=bool shm_detach (int shm_identifier) - Disconnects from shared memory segment
  2404. shm_get_var=mixed shm_get_var (int id, int variable_key) - Returns a variable from shared memory
  2405. shm_put_var=int shm_put_var (int shm_identifier, int variable_key, mixed variable) - Inserts or updates a variable in shared memory
  2406. shm_remove=int shm_remove (int shm_identifier) - Removes shared memory from Unix systems
  2407. shm_remove_var=int shm_remove_var (int id, int variable_key) - Removes a variable from shared memory
  2408. shmop_close=int shmop_close (int shmid) - Close shared memory block
  2409. shmop_delete=int shmop_delete (int shmid) - Delete shared memory block
  2410. shmop_open=int shmop_open (int key, string flags, int mode, int size) - Create or open shared memory block
  2411. shmop_read=string shmop_read (int shmid, int start, int count) - Read data from shared memory block
  2412. shmop_size=int shmop_size (int shmid) - Get size of shared memory block
  2413. shmop_write=int shmop_write (int shmid, string data, int offset) - Write data into shared memory block
  2414. show_source=mixed show_source (string filename [, bool return]) - Syntax highlighting of a file
  2415. shuffle=void shuffle (array array) - Shuffle an array
  2416. similar_text=int similar_text (string first, string second [, float percent]) - Calculate the similarity between two strings
  2417. sin=float sin (float arg) - Sine
  2418. sinh=float sinh (float arg) - Hyperbolic sine
  2419. sizeof=int sizeof (mixed var [, int mode]) - Count elements in a variable
  2420. sleep=void sleep (int seconds) - Delay execution
  2421. snmp_get_quick_print=bool snmp_get_quick_print (void) - Fetches the current value of the UCD library's quick_print setting
  2422. snmp_set_quick_print=void snmp_set_quick_print (bool quick_print) - Set the value of quick_print within the UCD SNMP library
  2423. snmpget=string snmpget (string hostname, string community, string object_id [, int timeout [, int retries]]) - Fetch an SNMP object
  2424. snmprealwalk=array snmprealwalk (string host, string community, string object_id [, int timeout [, int retries]]) - Return all objects including their respective object ID within the specified one
  2425. snmpset=bool snmpset (string hostname, string community, string object_id, string type, mixed value [, int timeout [, int retries]]) - Set an SNMP object
  2426. snmpwalk=array snmpwalk (string hostname, string community, string object_id [, int timeout [, int retries]]) - Fetch all the SNMP objects from an agent
  2427. snmpwalkoid=array snmpwalkoid (string hostname, string community, string object_id [, int timeout [, int retries]]) - Query for a tree of information about a network entity
  2428. socket_accept=resource socket_accept (resource socket) - Accepts a connection on a socket
  2429. socket_bind=bool socket_bind (resource socket, string address [, int port]) - Binds a name to a socket
  2430. socket_clear_error=void socket_clear_error ([resource socket]) - Clears the error on the socket or the last error code
  2431. socket_close=void socket_close (resource socket) - Closes a socket resource
  2432. socket_connect=bool socket_connect (resource socket, string address [, int port]) - Initiates a connection on a socket
  2433. socket_create=resource socket_create (int domain, int type, int protocol) - Create a socket (endpoint for communication)
  2434. socket_create_listen=resource socket_create_listen (int port [, int backlog]) - Opens a socket on port to accept connections
  2435. socket_create_pair=bool socket_create_pair (int domain, int type, int protocol, array &fd) - Creates a pair of indistinguishable sockets and stores them in fds.
  2436. socket_get_option=mixed socket_get_option (resource socket, int level, int optname) - Gets socket options for the socket
  2437. socket_get_status=array socket_get_status (resource stream) - Retrieves header/meta data from streams/file pointers
  2438. socket_getpeername=bool socket_getpeername (resource socket, string &addr [, int &port]) - Queries the remote side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type.
  2439. socket_getsockname=bool socket_getsockname (resource socket, string &addr [, int &port]) - Queries the local side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type.
  2440. socket_iovec_add=bool socket_iovec_add (resource iovec, int iov_len) - Adds a new vector to the scatter/gather array
  2441. socket_iovec_alloc=resource socket_iovec_alloc (int num_vectors [, int ]) - Builds a 'struct iovec' for use with sendmsg, recvmsg, writev, and readv
  2442. socket_iovec_delete=bool socket_iovec_delete (resource iovec, int iov_pos) - Deletes a vector from an array of vectors
  2443. socket_iovec_fetch=string socket_iovec_fetch (resource iovec, int iovec_position) - Returns the data held in the iovec specified by iovec_id[iovec_position]
  2444. socket_iovec_free=bool socket_iovec_free (resource iovec) - Frees the iovec specified by iovec_id
  2445. socket_iovec_set=bool socket_iovec_set (resource iovec, int iovec_position, string new_val) - Sets the data held in iovec_id[iovec_position] to new_val
  2446. socket_last_error=int socket_last_error ([resource socket]) - Returns the last error on the socket
  2447. socket_listen=bool socket_listen (resource socket [, int backlog]) - Listens for a connection on a socket
  2448. socket_read=string socket_read (resource socket, int length [, int type]) - Reads a maximum of length bytes from a socket
  2449. socket_readv=bool socket_readv (resource socket, resource iovec_id) - Reads from an fd, using the scatter-gather array defined by iovec_id
  2450. socket_recv=int socket_recv (resource socket, string &buf, int len, int flags) - Receives data from a connected socket
  2451. socket_recvfrom=int socket_recvfrom (resource socket, string &buf, int len, int flags, string &name [, int &port]) - Receives data from a socket, connected or not
  2452. socket_recvmsg=bool socket_recvmsg (resource socket, resource iovec, array &control, int &controllen, int &flags, string &addr [, int &port]) - Used to receive messages on a socket, whether connection-oriented or not
  2453. socket_select=int socket_select (array &read, array &write, array &except, int tv_sec [, int tv_usec]) - Runs the select() system call on the given arrays of sockets with a specified timeout
  2454. socket_send=int socket_send (resource socket, string buf, int len, int flags) - Sends data to a connected socket
  2455. socket_sendmsg=bool socket_sendmsg (resource socket, resource iovec, int flags, string addr [, int port]) - Sends a message to a socket, regardless of whether it is connection-oriented or not
  2456. socket_sendto=int socket_sendto (resource socket, string buf, int len, int flags, string addr [, int port]) - Sends a message to a socket, whether it is connected or not
  2457. socket_set_block=bool socket_set_block (resource socket) - Sets blocking mode on a socket resource
  2458. socket_set_blocking=bool socket_set_blocking (resource stream, int mode) - Set blocking/non-blocking mode on a stream
  2459. socket_set_nonblock=bool socket_set_nonblock (resource socket) - Sets nonblocking mode for file descriptor fd
  2460. socket_set_option=bool socket_set_option (resource socket, int level, int optname, mixed optval) - Sets socket options for the socket
  2461. socket_set_timeout=bool socket_set_timeout (resource stream, int seconds [, int microseconds]) - Set timeout period on a stream
  2462. socket_shutdown=bool socket_shutdown (resource socket [, int how]) - Shuts down a socket for receiving, sending, or both.
  2463. socket_strerror=string socket_strerror (int errno) - Return a string describing a socket error
  2464. socket_write=int socket_write (resource socket, string buffer [, int length]) - Write to a socket
  2465. socket_writev=bool socket_writev (resource socket, resource iovec_id) - Writes to a file descriptor, fd, using the scatter-gather array defined by iovec_id
  2466. sort=void sort (array array [, int sort_flags]) - Sort an array
  2467. soundex=string soundex (string str) - Calculate the soundex key of a string
  2468. split=array split (string pattern, string string [, int limit]) - split string into array by regular expression
  2469. spliti=array spliti (string pattern, string string [, int limit]) - Split string into array by regular expression case insensitive
  2470. sprintf=string sprintf (string format [, mixed args]) - Return a formatted string
  2471. sql_regcase=string sql_regcase (string string) - Make regular expression for case insensitive match
  2472. sqlite_array_query=array sqlite_array_query (resource dbhandle, string query [, int result_type [, bool decode_binary]]) - Execute a query against a given database and returns an array.
  2473. sqlite_busy_timeout=void sqlite_busy_timeout (resource dbhandle, int milliseconds) - Set busy timeout duration, or disable busy handlers.
  2474. sqlite_changes=int sqlite_changes (resource dbhandle) - Returns the number of rows that were changed by the most recent SQL statement.
  2475. sqlite_close=void sqlite_close (resource dbhandle) - Closes an open SQLite database.
  2476. sqlite_column=mixed sqlite_column (resource result, mixed index_or_name [, bool decode_binary]) - Fetches a column from the current row of a result set.
  2477. sqlite_create_aggregate=bool sqlite_create_aggregate (resource dbhandle, string function_name, mixed step_func, mixed finalize_func [, int num_args]) - Register an aggregating UDF for use in SQL statements.
  2478. sqlite_create_function=bool sqlite_create_function (resource dbhandle, string function_name, mixed callback [, int num_args]) - Registers a "regular" User Defined Function for use in SQL statements.
  2479. sqlite_current=array sqlite_current (resource result [, int result_type [, bool decode_binary]]) - Fetches the current row from a result set as an array.
  2480. sqlite_error_string=string sqlite_error_string (int error_code) - Returns the textual description of an error code.
  2481. sqlite_escape_string=string sqlite_escape_string (string item) - Escapes a string for use as a query parameter
  2482. sqlite_fetch_array=array sqlite_fetch_array (resource result [, int result_type [, bool decode_binary]]) - Fetches the next row from a result set as an array.
  2483. sqlite_fetch_single=string sqlite_fetch_single (resource result [, int result_type [, bool decode_binary]]) - Fetches the first column of a result set as a string.
  2484. sqlite_fetch_string=string sqlite_fetch_string (resource result [, int result_type [, bool decode_binary]]) - Fetches the first column of a result set as a string.
  2485. sqlite_field_name=string sqlite_field_name (resource result, int field_index) - Returns the name of a particular field.
  2486. sqlite_has_more=bool sqlite_has_more (resource result) - Returns whether or not more rows are available.
  2487. sqlite_last_error=int sqlite_last_error (resource dbhandle) - Returns the error code of the last error for a database.
  2488. sqlite_last_insert_rowid=int sqlite_last_insert_rowid (resource dbhandle) - Returns the rowid of the most recently inserted row.
  2489. sqlite_libencoding=string sqlite_libencoding (void) - Returns the encoding of the linked SQLite library.
  2490. sqlite_libversion=string sqlite_libversion (void) - Returns the version of the linked SQLite library.
  2491. sqlite_next=bool sqlite_next (resource result) - Seek to the next row number.
  2492. sqlite_num_fields=int sqlite_num_fields (resource result) - Returns the number of fields in a result set.
  2493. sqlite_num_rows=int sqlite_num_rows (resource result) - Returns the number of rows in a buffered result set.
  2494. sqlite_open=resource sqlite_open (string filename [, int mode [, string &error_message]]) - Opens a SQLite database.  Will create the database if it does not exist
  2495. sqlite_popen=resource sqlite_popen (string filename [, int mode [, string &error_message]]) - Opens a persistent handle to an SQLite database.  Will create the database if it does not exist.
  2496. sqlite_query=resource sqlite_query (resource dbhandle, string query) - Executes a query against a given database and returns a result handle.
  2497. sqlite_rewind=bool sqlite_rewind (resource result) - Seek to the first row number.
  2498. sqlite_seek=bool sqlite_seek (resource result, int rownum) - Seek to a particular row number of a buffered result set.
  2499. sqlite_udf_decode_binary=string sqlite_udf_decode_binary (string data) - Decode binary data passed as parameters to an UDF.
  2500. sqlite_udf_encode_binary=string sqlite_udf_encode_binary (string data) - Encode binary data before returning it from an UDF.
  2501. sqlite_unbuffered_query=resource sqlite_unbuffered_query (resource dbhandle, string query) - Execute a query that does not prefetch and buffer all data
  2502. sqrt=float sqrt (float arg) - Square root
  2503. srand=void srand (int seed) - Seed the random number generator
  2504. sscanf=mixed sscanf (string str, string format [, string var1]) - Parses input from a string according to a format
  2505. stat=array stat (string filename) - Gives information about a file
  2506. str_ireplace=mixed str_ireplace (mixed search, mixed replace, mixed subject [, int &count]) - Case-insensitive version of
  2507. str_pad=string str_pad (string input, int pad_length [, string pad_string [, int pad_type]]) - Pad a string to a certain length with another string
  2508. str_repeat=string str_repeat (string input, int multiplier) - Repeat a string
  2509. str_replace=mixed str_replace (mixed search, mixed replace, mixed subject [, int &count]) - Replace all occurrences of the search string with the replacement string
  2510. str_rot13=string str_rot13 (string str) - Perform the rot13 transform on a string
  2511. str_shuffle=string str_shuffle (string str) - Randomly shuffles a string
  2512. str_split=array str_split (string string [, int split_length]) - Convert a string to an array
  2513. str_word_count=mixed str_word_count (string string [, int format]) - Return information about words used in a string
  2514. strcasecmp=int strcasecmp (string str1, string str2) - Binary safe case-insensitive string comparison
  2515. strchr=string strchr (string haystack, string needle) - Find first occurrence of a string
  2516. strcmp=int strcmp (string str1, string str2) - Binary safe string comparison
  2517. strcoll=int strcoll (string str1, string str2) - Locale based string comparison
  2518. strcspn=int strcspn (string str1, string str2) - Find length of initial segment not matching mask
  2519. stream_context_create=resource stream_context_create (array options) - Create a streams context
  2520. stream_context_get_options=array stream_context_get_options (resource stream|context) - Retrieve options for a stream/wrapper/context
  2521. stream_context_set_option=bool stream_context_set_option (resource context|stream, string wrapper, string option, mixed value) - Sets an option for a stream/wrapper/context
  2522. stream_context_set_params=bool stream_context_set_params (resource stream|context, array params) - Set parameters for a stream/wrapper/context
  2523. stream_copy_to_stream=int stream_copy_to_stream (resource source, resource dest [, int maxlength]) - Copies data from one stream to another
  2524. stream_filter_append=bool stream_filter_append (resource stream, string filtername [, int read_write [, string params]]) - Attach a filter to a stream.
  2525. stream_filter_prepend=bool stream_filter_prepend (resource stream, string filtername [, int read_write [, string params]]) - Attach a filter to a stream.
  2526. stream_filter_register=bool stream_filter_register (string filtername, string classname) - Register a stream filter implemented as a PHP class derived from
  2527. stream_get_filters=array stream_get_filters (void) - Retrieve list of registered filters
  2528. stream_get_line=string stream_get_line (resource handle, int length, string ending) - Gets line from stream resource up to a given delimiter
  2529. stream_get_meta_data=array stream_get_meta_data (resource stream) - Retrieves header/meta data from streams/file pointers
  2530. stream_get_transports=array stream_get_transports (void) - Retrieve list of registered socket transports
  2531. stream_get_wrappers=array stream_get_wrappers (void) - Retrieve list of registered streams
  2532. stream_register_wrapper=bool stream_register_wrapper (string protocol, string classname) - Register a URL wrapper implemented as a PHP class
  2533. stream_select=int stream_select (resource &read, resource &write, resource &except, int tv_sec [, int tv_usec]) - Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by tv_sec and tv_usec
  2534. stream_set_blocking=bool stream_set_blocking (resource stream, int mode) - Set blocking/non-blocking mode on a stream
  2535. stream_set_timeout=bool stream_set_timeout (resource stream, int seconds [, int microseconds]) - Set timeout period on a stream
  2536. stream_set_write_buffer=int stream_set_write_buffer (resource stream, int buffer) - Sets file buffering on the given stream
  2537. stream_socket_accept=resource stream_socket_accept (resource server_socket [, int timeout [, string &peername]]) - Accept a connection on a socket created by
  2538. stream_socket_client=resource stream_socket_client (string remote_socket [, int &errno [, string &errstr [, float timeout [, int flags [, resource context]]]]]) - Open Internet or Unix domain socket connection
  2539. stream_socket_get_name=string stream_socket_get_name (resource handle, bool want_peer) - Retrieve the name of the local or remote sockets
  2540. stream_socket_server=resource stream_socket_server (string local_socket [, int &errno [, string &errstr [, int flags [, resource context]]]]) - Create an Internet or Unix domain server socket
  2541. stream_wrapper_register=bool stream_wrapper_register (string protocol, string classname) - Register a URL wrapper implemented as a PHP class
  2542. strftime=string strftime (string format [, int timestamp]) - Format a local time/date according to locale settings
  2543. strip_tags=string strip_tags (string str [, string allowable_tags]) - Strip HTML and PHP tags from a string
  2544. stripcslashes=string stripcslashes (string str) - Un-quote string quoted with
  2545. stripos=int stripos (string haystack, string needle [, int offset]) - Find position of first occurrence of a case-insensitive string
  2546. stripslashes=string stripslashes (string str) - Un-quote string quoted with
  2547. stristr=string stristr (string haystack, string needle) - Case-insensitive
  2548. strlen=int strlen (string str) - Get string length
  2549. strnatcasecmp=int strnatcasecmp (string str1, string str2) - Case insensitive string comparisons using a "natural order" algorithm
  2550. strnatcmp=int strnatcmp (string str1, string str2) - String comparisons using a "natural order" algorithm
  2551. strncasecmp=int strncasecmp (string str1, string str2, int len) - Binary safe case-insensitive string comparison of the first n characters
  2552. strncmp=int strncmp (string str1, string str2, int len) - Binary safe string comparison of the first n characters
  2553. strpos=int strpos (string haystack, string needle [, int offset]) - Find position of first occurrence of a string
  2554. strrchr=string strrchr (string haystack, string needle) - Find the last occurrence of a character in a string
  2555. strrev=string strrev (string string) - Reverse a string
  2556. strripos=int strripos (string haystack, string needle) - Find position of last occurrence of a case-insensitive string in a string
  2557. strrpos=int strrpos (string haystack, char needle) - Find position of last occurrence of a char in a string
  2558. strspn=int strspn (string str1, string str2) - Find length of initial segment matching mask
  2559. strstr=string strstr (string haystack, string needle) - Find first occurrence of a string
  2560. strtok=string strtok (string arg1, string arg2) - Tokenize string
  2561. strtolower=string strtolower (string str) - Make a string lowercase
  2562. strtotime=int strtotime (string time [, int now]) - Parse about any English textual datetime description into a UNIX timestamp
  2563. strtoupper=string strtoupper (string string) - Make a string uppercase
  2564. strtr=string strtr (string str, string from, string to) - Translate certain characters
  2565. strval=string strval (mixed var) - Get string value of a variable
  2566. substr=string substr (string string, int start [, int length]) - Return part of a string
  2567. substr_count=int substr_count (string haystack, string needle) - Count the number of substring occurrences
  2568. substr_replace=string substr_replace (string string, string replacement, int start [, int length]) - Replace text within a portion of a string
  2569. swf_actiongeturl=void swf_actiongeturl (string url, string target) - Get a URL from a Shockwave Flash movie
  2570. swf_actiongotoframe=void swf_actiongotoframe (int framenumber) - Play a frame and then stop
  2571. swf_actiongotolabel=void swf_actiongotolabel (string label) - Display a frame with the specified label
  2572. swf_actionnextframe=void swf_actionnextframe (void) - Go foward one frame
  2573. swf_actionplay=void swf_actionplay (void) - Start playing the flash movie from the current frame
  2574. swf_actionprevframe=void swf_actionprevframe (void) - Go backwards one frame
  2575. swf_actionsettarget=void swf_actionsettarget (string target) - Set the context for actions
  2576. swf_actionstop=void swf_actionstop (void) - Stop playing the flash movie at the current frame
  2577. swf_actiontogglequality=void swf_actiontogglequality (void) - Toggle between low and high quality
  2578. swf_actionwaitforframe=void swf_actionwaitforframe (int framenumber, int skipcount) - Skip actions if a frame has not been loaded
  2579. swf_addbuttonrecord=void swf_addbuttonrecord (int states, int shapeid, int depth) - Controls location, appearance and active area of the current button
  2580. swf_addcolor=void swf_addcolor (float r, float g, float b, float a) - Set the global add color to the rgba value specified
  2581. swf_closefile=void swf_closefile ([int return_file]) - Close the current Shockwave Flash file
  2582. swf_definebitmap=void swf_definebitmap (int objid, string image_name) - Define a bitmap
  2583. swf_definefont=void swf_definefont (int fontid, string fontname) - Defines a font
  2584. swf_defineline=void swf_defineline (int objid, float x1, float y1, float x2, float y2, float width) - Define a line
  2585. swf_definepoly=void swf_definepoly (int objid, array coords, int npoints, float width) - Define a polygon
  2586. swf_definerect=void swf_definerect (int objid, float x1, float y1, float x2, float y2, float width) - Define a rectangle
  2587. swf_definetext=void swf_definetext (int objid, string str, int docenter) - Define a text string
  2588. swf_endbutton=void swf_endbutton (void) - End the definition of the current button
  2589. swf_enddoaction=void swf_enddoaction (void) - End the current action
  2590. swf_endshape=void swf_endshape (void) - Completes the definition of the current shape
  2591. swf_endsymbol=void swf_endsymbol (void) - End the definition of a symbol
  2592. swf_fontsize=void swf_fontsize (float size) - Change the font size
  2593. swf_fontslant=void swf_fontslant (float slant) - Set the font slant
  2594. swf_fonttracking=void swf_fonttracking (float tracking) - Set the current font tracking
  2595. swf_getbitmapinfo=array swf_getbitmapinfo (int bitmapid) - Get information about a bitmap
  2596. swf_getfontinfo=array swf_getfontinfo (void) - The height in pixels of a capital A and a lowercase x
  2597. swf_getframe=int swf_getframe (void) - Get the frame number of the current frame
  2598. swf_labelframe=void swf_labelframe (string name) - Label the current frame
  2599. swf_lookat=void swf_lookat (float view_x, float view_y, float view_z, float reference_x, float reference_y, float reference_z, float twist) - Define a viewing transformation
  2600. swf_modifyobject=void swf_modifyobject (int depth, int how) - Modify an object
  2601. swf_mulcolor=void swf_mulcolor (float r, float g, float b, float a) - Sets the global multiply color to the rgba value specified
  2602. swf_nextid=int swf_nextid (void) - Returns the next free object id
  2603. swf_oncondition=void swf_oncondition (int transition) - Describe a transition used to trigger an action list
  2604. swf_openfile=void swf_openfile (string filename, float width, float height, float framerate, float r, float g, float b) - Open a new Shockwave Flash file
  2605. swf_ortho=void swf_ortho (float xmin, float xmax, float ymin, float ymax, float zmin, float zmax) - Defines an orthographic mapping of user coordinates onto the current viewport
  2606. swf_ortho2=void swf_ortho2 (float xmin, float xmax, float ymin, float ymax) - Defines 2D orthographic mapping of user coordinates onto the current viewport
  2607. swf_perspective=void swf_perspective (float fovy, float aspect, float near, float far) - Define a perspective projection transformation
  2608. swf_placeobject=void swf_placeobject (int objid, int depth) - Place an object onto the screen
  2609. swf_polarview=void swf_polarview (float dist, float azimuth, float incidence, float twist) - Define the viewer's position with polar coordinates
  2610. swf_popmatrix=void swf_popmatrix (void) - Restore a previous transformation matrix
  2611. swf_posround=void swf_posround (int round) - Enables or Disables the rounding of the translation when objects are placed or moved
  2612. swf_pushmatrix=void swf_pushmatrix (void) - Push the current transformation matrix back unto the stack
  2613. swf_removeobject=void swf_removeobject (int depth) - Remove an object
  2614. swf_rotate=void swf_rotate (float angle, string axis) - Rotate the current transformation
  2615. swf_scale=void swf_scale (float x, float y, float z) - Scale the current transformation
  2616. swf_setfont=void swf_setfont (int fontid) - Change the current font
  2617. swf_setframe=void swf_setframe (int framenumber) - Switch to a specified frame
  2618. swf_shapearc=void swf_shapearc (float x, float y, float r, float ang1, float ang2) - Draw a circular arc
  2619. swf_shapecurveto=void swf_shapecurveto (float x1, float y1, float x2, float y2) - Draw a quadratic bezier curve between two points
  2620. swf_shapecurveto3=void swf_shapecurveto3 (float x1, float y1, float x2, float y2, float x3, float y3) - Draw a cubic bezier curve
  2621. swf_shapefillbitmapclip=void swf_shapefillbitmapclip (int bitmapid) - Set current fill mode to clipped bitmap
  2622. swf_shapefillbitmaptile=void swf_shapefillbitmaptile (int bitmapid) - Set current fill mode to tiled bitmap
  2623. swf_shapefilloff=void swf_shapefilloff (void) - Turns off filling
  2624. swf_shapefillsolid=void swf_shapefillsolid (float r, float g, float b, float a) - Set the current fill style to the specified color
  2625. swf_shapelinesolid=void swf_shapelinesolid (float r, float g, float b, float a, float width) - Set the current line style
  2626. swf_shapelineto=void swf_shapelineto (float x, float y) - Draw a line
  2627. swf_shapemoveto=void swf_shapemoveto (float x, float y) - Move the current position
  2628. swf_showframe=void swf_showframe (void) - Display the current frame
  2629. swf_startbutton=void swf_startbutton (int objid, int type) - Start the definition of a button
  2630. swf_startdoaction=void swf_startdoaction (void) - Start a description of an action list for the current frame
  2631. swf_startshape=void swf_startshape (int objid) - Start a complex shape
  2632. swf_startsymbol=void swf_startsymbol (int objid) - Define a symbol
  2633. swf_textwidth=float swf_textwidth (string str) - Get the width of a string
  2634. swf_translate=void swf_translate (float x, float y, float z) - Translate the current transformations
  2635. swf_viewport=void swf_viewport (float xmin, float xmax, float ymin, float ymax) - Select an area for future drawing
  2636. swfaction=new swfaction (string script) - Creates a new Action.
  2637. swfbitmap=new swfbitmap (string filename [, int alphafilename]) - Loads Bitmap object
  2638. swfbutton=new swfbutton (void) - Creates a new Button.
  2639. swfbutton_keypress=int swfbutton_keypress (string str) - Returns the action flag for keyPress(char)
  2640. swfdisplayitem=new swfdisplayitem (void) - Creates a new displayitem object.
  2641. swffill=new SWFFill (void) - Loads SWFFill object
  2642. swffont=new swffont (string filename) - Loads a font definition
  2643. swfgradient=new swfgradient (void) - Creates a gradient object
  2644. swfmorph=new swfmorph (void) - Creates a new SWFMorph object.
  2645. swfmovie=new swfmovie (void) - Creates a new movie object, representing an SWF version 4 movie.
  2646. swfshape=new swfshape (void) - Creates a new shape object.
  2647. swfsprite=new swfsprite (void) - Creates a movie clip (a sprite)
  2648. swftext=new swftext (void) - Creates a new SWFText object.
  2649. swftextfield=new swftextfield ([int flags]) - Creates a text field object
  2650. sybase_affected_rows=int sybase_affected_rows ([resource link_identifier]) - Gets number of affected rows in last query
  2651. sybase_close=bool sybase_close ([resource link_identifier]) - Closes a Sybase connection
  2652. sybase_connect=resource sybase_connect ([string servername [, string username [, string password [, string charset [, string appname]]]]]) - Opens a Sybase server connection
  2653. sybase_data_seek=bool sybase_data_seek (resource result_identifier, int row_number) - Moves internal row pointer
  2654. sybase_deadlock_retry_count=void sybase_deadlock_retry_count (int retry_count) - Sets the deadlock retry count
  2655. sybase_fetch_array=array sybase_fetch_array (resource result) - Fetch row as array
  2656. sybase_fetch_assoc=array sybase_fetch_assoc (resource result) - Fetch a result row as an associative array
  2657. sybase_fetch_field=object sybase_fetch_field (resource result [, int field_offset]) - Get field information from a result
  2658. sybase_fetch_object=object sybase_fetch_object (resource result [, mixed object]) - Fetch a row as an object
  2659. sybase_fetch_row=array sybase_fetch_row (resource result) - Get a result row as an enumerated array
  2660. sybase_field_seek=bool sybase_field_seek (resource result, int field_offset) - Sets field offset
  2661. sybase_free_result=bool sybase_free_result (resource result) - Frees result memory
  2662. sybase_get_last_message=string sybase_get_last_message (void) - Returns the last message from the server
  2663. sybase_min_client_severity=void sybase_min_client_severity (int severity) - Sets minimum client severity
  2664. sybase_min_error_severity=void sybase_min_error_severity (int severity) - Sets minimum error severity
  2665. sybase_min_message_severity=void sybase_min_message_severity (int severity) - Sets minimum message severity
  2666. sybase_min_server_severity=void sybase_min_server_severity (int severity) - Sets minimum server severity
  2667. sybase_num_fields=int sybase_num_fields (resource result) - Gets the number of fields in a result set
  2668. sybase_num_rows=int sybase_num_rows (resource result) - Get number of rows in a result set
  2669. sybase_pconnect=resource sybase_pconnect ([string servername [, string username [, string password [, string charset [, string appname]]]]]) - Open persistent Sybase connection
  2670. sybase_query=resource sybase_query (string query, resource link_identifier) - Sends a Sybase query
  2671. sybase_result=string sybase_result (resource result, int row, mixed field) - Get result data
  2672. sybase_select_db=bool sybase_select_db (string database_name [, resource link_identifier]) - Selects a Sybase database
  2673. sybase_set_message_handler=bool sybase_set_message_handler (callback handler) - Sets the handler called when a server message is raised
  2674. sybase_unbuffered_query=resource sybase_unbuffered_query (string query, resource link_identifier) - Send a Sybase query and do not block
  2675. symlink=bool symlink (string target, string link) - Creates a symbolic link
  2676. syslog=int syslog (int priority, string message) - Generate a system log message
  2677. system=string system (string command [, int return_var]) - Execute an external program and display output
  2678. tan=float tan (float arg) - Tangent
  2679. tanh=float tanh (float arg) - Hyperbolic tangent
  2680. tempnam=string tempnam (string dir, string prefix) - Create file with unique file name
  2681. textdomain=string textdomain (string text_domain) - Sets the default domain
  2682. time=int time (void) - Return current UNIX timestamp
  2683. tmpfile=resource tmpfile (void) - Creates a temporary file
  2684. token_get_all=array token_get_all (string source) - Split given source into PHP tokens
  2685. token_name=string token_name (int token) - Get the symbolic name of a given PHP token
  2686. touch=bool touch (string filename [, int time [, int atime]]) - Sets access and modification time of file
  2687. trigger_error=void trigger_error (string error_msg [, int error_type]) - Generates a user-level error/warning/notice message
  2688. trim=string trim (string str [, string charlist]) - Strip whitespace from the beginning and end of a string
  2689. uasort=void uasort (array array, callback cmp_function) - Sort an array with a user-defined comparison function and maintain index association
  2690. ucfirst=string ucfirst (string str) - Make a string's first character uppercase
  2691. ucwords=string ucwords (string str) - Uppercase the first character of each word in a string
  2692. udm_add_search_limit=bool udm_add_search_limit (resource agent, int var, string val) - Add various search limits
  2693. udm_alloc_agent=resource udm_alloc_agent (string dbaddr [, string dbmode]) - Allocate mnoGoSearch session
  2694. udm_api_version=int udm_api_version (void) - Get mnoGoSearch API version.
  2695. udm_cat_list=array udm_cat_list (resource agent, string category) - Get all the categories on the same level with the current one.
  2696. udm_cat_path=array udm_cat_path (resource agent, string category) - Get the path to the current category.
  2697. udm_check_charset=bool udm_check_charset (resource agent, string charset) - Check if the given charset is known to mnogosearch
  2698. udm_check_stored=int udm_check_stored (resource agent, int link, string doc_id) - Check connection to stored
  2699. udm_clear_search_limits=bool udm_clear_search_limits (resource agent) - Clear all mnoGoSearch search restrictions
  2700. udm_close_stored=int udm_close_stored (resource agent, int link) - Close connection to stored
  2701. udm_crc32=int udm_crc32 (resource agent, string str) - Return CRC32 checksum of gived string
  2702. udm_errno=int udm_errno (resource agent) - Get mnoGoSearch error number
  2703. udm_error=string udm_error (resource agent) - Get mnoGoSearch error message
  2704. udm_find=resource udm_find (resource agent, string query) - Perform search
  2705. udm_free_agent=int udm_free_agent (resource agent) - Free mnoGoSearch session
  2706. udm_free_ispell_data=bool udm_free_ispell_data (int agent) - Free memory allocated for ispell data
  2707. udm_free_res=bool udm_free_res (resurce res) - Free mnoGoSearch result
  2708. udm_get_doc_count=int udm_get_doc_count (resource agent) - Get total number of documents in database.
  2709. udm_get_res_field=string udm_get_res_field (resource res, int row, int field) - Fetch mnoGoSearch result field
  2710. udm_get_res_param=string udm_get_res_param (resource res, int param) - Get mnoGoSearch result parameters
  2711. udm_load_ispell_data=bool udm_load_ispell_data (resource agent, int var, string val1, string val2, int flag) - Load ispell data
  2712. udm_open_stored=int udm_open_stored (resource agent, string storedaddr) - Open connection to stored
  2713. udm_set_agent_param=bool udm_set_agent_param (resource agent, int var, string val) - Set mnoGoSearch agent session parameters
  2714. uksort=void uksort (array array, callback cmp_function) - Sort an array by keys using a user-defined comparison function
  2715. umask=int umask ([int mask]) - Changes the current umask
  2716. uniqid=string uniqid (string prefix [, bool lcg]) - Generate a unique ID
  2717. unixtojd=int unixtojd ([int timestamp]) - Convert UNIX timestamp to Julian Day
  2718. unlink=bool unlink (string filename) - Deletes a file
  2719. unpack=array unpack (string format, string data) - Unpack data from binary string
  2720. unregister_tick_function=void unregister_tick_function (string function_name) - De-register a function for execution on each tick
  2721. unserialize=mixed unserialize (string str [, string callback]) - Creates a PHP value from a stored representation
  2722. unset=void unset (mixed var [, mixed var [, ...]]) - Unset a given variable
  2723. urldecode=string urldecode (string str) - Decodes URL-encoded string
  2724. urlencode=string urlencode (string str) - URL-encodes string
  2725. user_error=void user_error (string error_msg [, int error_type]) - Generates a user-level error/warning/notice message
  2726. usleep=void usleep (int micro_seconds) - Delay execution in microseconds
  2727. usort=void usort (array array, callback cmp_function) - Sort an array by values using a user-defined comparison function
  2728. utf8_decode=string utf8_decode (string data) - Converts a string with ISO-8859-1 characters encoded with UTF-8 to single-byte ISO-8859-1.
  2729. utf8_encode=string utf8_encode (string data) - encodes an ISO-8859-1 string to UTF-8
  2730. var_dump=void var_dump (mixed expression [, mixed expression [, ...]]) - Dumps information about a variable
  2731. var_export=mixed var_export (mixed expression [, bool return]) - Outputs or returns a string representation of a variable
  2732. variant=new VARIANT($var) - VARIANT class
  2733. version_compare=int version_compare (string version1, string version2 [, string operator]) - Compares two "PHP-standardized" version number strings
  2734. virtual=int virtual (string filename) - Perform an Apache sub-request
  2735. vpopmail_add_alias_domain=bool vpopmail_add_alias_domain (string domain, string aliasdomain) - Add an alias for a virtual domain
  2736. vpopmail_add_alias_domain_ex=bool vpopmail_add_alias_domain_ex (string olddomain, string newdomain) - Add alias to an existing virtual domain
  2737. vpopmail_add_domain=bool vpopmail_add_domain (string domain, string dir, int uid, int gid) - Add a new virtual domain
  2738. vpopmail_add_domain_ex=bool vpopmail_add_domain_ex (string domain, string passwd [, string quota [, string bounce [, bool apop]]]) - Add a new virtual domain
  2739. vpopmail_add_user=bool vpopmail_add_user (string user, string domain, string password [, string gecos [, bool apop]]) - Add a new user to the specified virtual domain
  2740. vpopmail_alias_add=bool vpopmail_alias_add (string user, string domain, string alias) - insert a virtual alias
  2741. vpopmail_alias_del=bool vpopmail_alias_del (string user, string domain) - deletes all virtual aliases of a user
  2742. vpopmail_alias_del_domain=bool vpopmail_alias_del_domain (string domain) - deletes all virtual aliases of a domain
  2743. vpopmail_alias_get=array vpopmail_alias_get (string alias, string domain) - get all lines of an alias for a domain
  2744. vpopmail_alias_get_all=array vpopmail_alias_get_all (string domain) - get all lines of an alias for a domain
  2745. vpopmail_auth_user=bool vpopmail_auth_user (string user, string domain, string password [, string apop]) - Attempt to validate a username/domain/password. Returns true/false
  2746. vpopmail_del_domain=bool vpopmail_del_domain (string domain) - Delete a virtual domain
  2747. vpopmail_del_domain_ex=bool vpopmail_del_domain_ex (string domain) - Delete a virtual domain
  2748. vpopmail_del_user=bool vpopmail_del_user (string user, string domain) - Delete a user from a virtual domain
  2749. vpopmail_error=string vpopmail_error (void) - Get text message for last vpopmail error. Returns string
  2750. vpopmail_passwd=bool vpopmail_passwd (string user, string domain, string password) - Change a virtual user's password
  2751. vpopmail_set_user_quota=bool vpopmail_set_user_quota (string user, string domain, string quota) - Sets a virtual user's quota
  2752. vprintf=void vprintf (string format, array args) - Output a formatted string
  2753. vsprintf=string vsprintf (string format, array args) - Return a formatted string
  2754. w32api_deftype=bool w32api_deftype (string typename, string member1_type, string member1_name [, string ... [, string ...]]) - Defines a type for use with other w32api_functions
  2755. w32api_init_dtype=resource w32api_init_dtype (string typename, mixed value [, mixed ...]) - Creates an instance of the data type typename and fills it with the values passed
  2756. w32api_invoke_function=mixed w32api_invoke_function (string funcname, mixed argument [, mixed ...]) - Invokes function funcname with the arguments passed after the function name
  2757. w32api_register_function=bool w32api_register_function (string library, string function_name, string return_type) - Registers function function_name from library with PHP
  2758. w32api_set_call_method=void w32api_set_call_method (int method) - Sets the calling method used
  2759. wddx_add_vars=bool wddx_add_vars (int packet_id, mixed name_var [, mixed ...]) - Add variables to a WDDX packet with the specified ID
  2760. wddx_deserialize=mixed wddx_deserialize (string packet) - Deserializes a WDDX packet
  2761. wddx_packet_end=string wddx_packet_end (int packet_id) - Ends a WDDX packet with the specified ID
  2762. wddx_packet_start=int wddx_packet_start ([string comment]) - Starts a new WDDX packet with structure inside it
  2763. wddx_serialize_value=string wddx_serialize_value (mixed var [, string comment]) - Serialize a single value into a WDDX packet
  2764. wddx_serialize_vars=string wddx_serialize_vars (mixed var_name [, mixed ...]) - Serialize variables into a WDDX packet
  2765. wordwrap=string wordwrap (string str [, int width [, string break [, boolean cut]]]) - Wraps a string to a given number of characters using a string break character.
  2766. xml_error_string=string xml_error_string (int code) - get XML parser error string
  2767. xml_get_current_byte_index=int xml_get_current_byte_index (resource parser) - get current byte index for an XML parser
  2768. xml_get_current_column_number=int xml_get_current_column_number (resource parser) - Get current column number for an XML parser
  2769. xml_get_current_line_number=int xml_get_current_line_number (resource parser) - get current line number for an XML parser
  2770. xml_get_error_code=int xml_get_error_code (resource parser) - get XML parser error code
  2771. xml_parse=bool xml_parse (resource parser, string data [, bool is_final]) - start parsing an XML document
  2772. xml_parse_into_struct=int xml_parse_into_struct (resource parser, string data, array &values [, array &index]) - Parse XML data into an array structure
  2773. xml_parser_create=resource xml_parser_create ([string encoding]) - create an XML parser
  2774. xml_parser_create_ns=resource xml_parser_create_ns ([string encoding [, string separator]]) - Create an XML parser with namespace support
  2775. xml_parser_free=bool xml_parser_free (resource parser) - Free an XML parser
  2776. xml_parser_get_option=mixed xml_parser_get_option (resource parser, int option) - get options from an XML parser
  2777. xml_parser_set_option=bool xml_parser_set_option (resource parser, int option, mixed value) - set options in an XML parser
  2778. xml_set_character_data_handler=bool xml_set_character_data_handler (resource parser, callback handler) - set up character data handler
  2779. xml_set_default_handler=bool xml_set_default_handler (resource parser, callback handler) - set up default handler
  2780. xml_set_element_handler=bool xml_set_element_handler (resource parser, callback start_element_handler, callback end_element_handler) - set up start and end element handlers
  2781. xml_set_end_namespace_decl_handler=bool xml_set_end_namespace_decl_handler (resource pind, callback handler) - Set up character data handler
  2782. xml_set_external_entity_ref_handler=bool xml_set_external_entity_ref_handler (resource parser, callback handler) - set up external entity reference handler
  2783. xml_set_notation_decl_handler=bool xml_set_notation_decl_handler (resource parser, callback handler) - set up notation declaration handler
  2784. xml_set_object=void xml_set_object (resource parser, object object) - Use XML Parser within an object
  2785. xml_set_processing_instruction_handler=bool xml_set_processing_instruction_handler (resource parser, callback handler) - Set up processing instruction (PI) handler
  2786. xml_set_start_namespace_decl_handler=bool xml_set_start_namespace_decl_handler (resource pind, callback hdl) - Set up character data handler
  2787. xml_set_unparsed_entity_decl_handler=bool xml_set_unparsed_entity_decl_handler (resource parser, callback handler) - Set up unparsed entity declaration handler
  2788. xmlrpc_decode=array xmlrpc_decode (string xml [, string encoding]) - Decodes XML into native PHP types
  2789. xmlrpc_decode_request=array xmlrpc_decode_request (string xml, string method [, string encoding]) - Decodes XML into native PHP types
  2790. xmlrpc_encode=string xmlrpc_encode (mixed value) - Generates XML for a PHP value
  2791. xmlrpc_encode_request=string xmlrpc_encode_request (string method, mixed params) - Generates XML for a method request
  2792. xmlrpc_get_type=string xmlrpc_get_type (mixed value) - Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime strings
  2793. xmlrpc_parse_method_descriptions=array xmlrpc_parse_method_descriptions (string xml) - Decodes XML into a list of method descriptions
  2794. xmlrpc_server_add_introspection_data=int xmlrpc_server_add_introspection_data (resource server, array desc) - Adds introspection documentation
  2795. xmlrpc_server_call_method=mixed xmlrpc_server_call_method (resource server, string xml, mixed user_data [, array output_options]) - Parses XML requests and call methods
  2796. xmlrpc_server_create=resource xmlrpc_server_create (void) - Creates an xmlrpc server
  2797. xmlrpc_server_destroy=void xmlrpc_server_destroy (resource server) - Destroys server resources
  2798. xmlrpc_server_register_introspection_callback=bool xmlrpc_server_register_introspection_callback (resource server, string function) - Register a PHP function to generate documentation
  2799. xmlrpc_server_register_method=bool xmlrpc_server_register_method (resource server, string method_name, string function) - Register a PHP function to resource method matching method_name
  2800. xmlrpc_set_type=bool xmlrpc_set_type (string value, string type) - Sets xmlrpc type, base64 or datetime, for a PHP string value
  2801. xpath_eval=array xpath_eval (object xpath context, string xpath expression [, object contextnode]) - Evaluates the XPath Location Path in the given string
  2802. xpath_eval_expression=array xpath_eval_expression (object xpath_context) - Evaluates the XPath Location Path in the given string
  2803. xpath_new_context=object xpath_new_context (object dom document) - Creates new xpath context
  2804. xptr_eval=int xptr_eval ([object xpath_context, string eval_str]) - Evaluate the XPtr Location Path in the given string
  2805. xptr_new_context=string xptr_new_context ([object doc_handle]) - Create new XPath Context
  2806. xslt_create=resource xslt_create (void) - Create a new XSLT processor
  2807. xslt_errno=int xslt_errno (resource xh) - Returns an error number
  2808. xslt_error=mixed xslt_error (resource xh) - Returns an error string
  2809. xslt_free=void xslt_free (resource xh) - Free XSLT processor
  2810. xslt_process=mixed xslt_process (resource xh, string xmlcontainer, string xslcontainer [, string resultcontainer [, array arguments [, array parameters]]]) - Perform an XSLT transformation
  2811. xslt_set_base=void xslt_set_base (resource xh, string uri) - Set the base URI for all XSLT transformations
  2812. xslt_set_encoding=void xslt_set_encoding (resource xh, string encoding) - Set the encoding for the parsing of XML documents
  2813. xslt_set_error_handler=void xslt_set_error_handler (resource xh, mixed handler) - Set an error handler for a XSLT processor
  2814. xslt_set_log=void xslt_set_log (resource xh, mixed log) - Set the log file to write log messages to
  2815. xslt_set_sax_handler=void xslt_set_sax_handler (resource xh, array handlers) - Set SAX handlers for a XSLT processor
  2816. xslt_set_sax_handlers=void xslt_set_sax_handlers (resource processor, array handlers) - Set the SAX handlers to be called when the XML document gets processed
  2817. xslt_set_scheme_handler=void xslt_set_scheme_handler (resource xh, array handlers) - Set Scheme handlers for a XSLT processor
  2818. xslt_set_scheme_handlers=void xslt_set_scheme_handlers (resource processor, array handlers) - Set the scheme handlers for the XSLT processor
  2819. yaz_addinfo=string yaz_addinfo (resource id) - Returns additional error information
  2820. yaz_ccl_conf=int yaz_ccl_conf (resource id, array config) - Configure CCL parser
  2821. yaz_ccl_parse=bool yaz_ccl_parse (resource id, string query, array &result) - Invoke CCL Parser
  2822. yaz_close=bool yaz_close (resource id) - Close YAZ connection
  2823. yaz_connect=resource yaz_connect (string zurl [, mixed options]) - Prepares for a connection to a Z39.50 target (server).
  2824. yaz_database=bool yaz_database (resource id, string databases) - Specifies the databases within a session
  2825. yaz_element=bool yaz_element (resource id, string elementset) - Specifies Element-Set Name for retrieval
  2826. yaz_errno=int yaz_errno (resource id) - Returns error number
  2827. yaz_error=string yaz_error (resource id) - Returns error description
  2828. yaz_get_option=string yaz_get_option (resource id, string name) - Returns value of option for connection
  2829. yaz_hits=int yaz_hits (resource id) - Returns number of hits for last search
  2830. yaz_itemorder=int yaz_itemorder (resource id, array args) - Prepares for Z39.50 Item Order with an ILL-Request package
  2831. yaz_present=int yaz_present (resource id) - Prepares for retrieval (Z39.50 present).
  2832. yaz_range=bool yaz_range (resource id, int start, int number) - Specifies the maximum number of records to retrieve
  2833. yaz_record=string yaz_record (resource id, int pos, string type) - Returns a record
  2834. yaz_scan=int yaz_scan (resource id, string type, string startterm [, array flags]) - Prepares for a scan
  2835. yaz_scan_result=array yaz_scan_result (resource id [, array & result]) - Returns Scan Response result
  2836. yaz_schema=int yaz_schema (resource id, string schema) - Specifies schema for retrieval.
  2837. yaz_search=int yaz_search (resource id, string type, string query) - Prepares for a search
  2838. yaz_set_option=string yaz_set_option (resource id, string name, string value) - Sets one or more options for connection
  2839. yaz_sort=int yaz_sort (resource id, string criteria) - Sets sorting criteria
  2840. yaz_syntax=int yaz_syntax (resource id, string syntax) - Specifies the preferred record syntax for retrieval.
  2841. yaz_wait=int yaz_wait ([array options]) - Wait for Z39.50 requests to complete
  2842. yp_all=void yp_all (string domain, string map, string callback) - Traverse the map and call a function on each entry
  2843. yp_cat=array yp_cat (string domain, string map) - Return an array containing the entire map
  2844. yp_err_string=string yp_err_string (int errorcode) - Returns the error string associated with the given error code
  2845. yp_errno=int yp_errno (void) - Returns the error code of the previous operation
  2846. yp_first=array yp_first (string domain, string map) - Returns the first key-value pair from the named map
  2847. yp_get_default_domain=int yp_get_default_domain (void) - Fetches the machine's default NIS domain
  2848. yp_master=string yp_master (string domain, string map) - Returns the machine name of the master NIS server for a map
  2849. yp_match=string yp_match (string domain, string map, string key) - Returns the matched line
  2850. yp_next=array yp_next (string domain, string map, string key) - Returns the next key-value pair in the named map.
  2851. yp_order=int yp_order (string domain, string map) - Returns the order number for a map
  2852. zend_logo_guid=string zend_logo_guid (void) - Gets the zend guid
  2853. zend_version=string zend_version (void) - Gets the version of the current Zend engine
  2854. zip_close=void zip_close (resource zip) - Close a Zip File Archive
  2855. zip_entry_close=void zip_entry_close (resource zip_entry) - Close a Directory Entry
  2856. zip_entry_compressedsize=int zip_entry_compressedsize (resource zip_entry) - Retrieve the Compressed Size of a Directory Entry
  2857. zip_entry_compressionmethod=string zip_entry_compressionmethod (resource zip_entry) - Retrieve the Compression Method of a Directory Entry
  2858. zip_entry_filesize=int zip_entry_filesize (resource zip_entry) - Retrieve the Actual File Size of a Directory Entry
  2859. zip_entry_name=string zip_entry_name (resource zip_entry) - Retrieve the Name of a Directory Entry
  2860. zip_entry_open=bool zip_entry_open (resource zip, resource zip_entry [, string mode]) - Open a Directory Entry for Reading
  2861. zip_entry_read=string zip_entry_read (resource zip_entry [, int length]) - Read From an Open Directory Entry
  2862. zip_open=resource zip_open (string filename) - Open a Zip File Archive
  2863. zip_read=resource zip_read (resource zip) - Read Next Entry in a Zip File Archive
  2864. zlib_get_coding_type=string zlib_get_coding_type (void) - Returns the coding type used for output compression